bknd-crud-read

Query Bknd entities via SDK or REST with filtering, sorting, and relations.

1|Updated Jan 23, 2026
One-click install
npx skills add https://github.com/cameronapak/melos --skill bknd-crud-read
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: bknd-crud-read
Source: https://github.com/cameronapak/melos/tree/main/.agents/skills/bknd-crud-read
Command: npx skills add https://github.com/cameronapak/melos --skill bknd-crud-read

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill simplifies the process of querying and retrieving data from Bknd-backed entities via the SDK or REST API, reducing boilerplate and ensuring consistent access patterns.

Core Features & Use Cases

  • Read Operations: readOne, readMany, readOneBy with filtering, sorting, field selection, and loading relations (with/join).
  • Flexible Access: supports both SDK and REST endpoints for dashboards, admin panels, and integrations.
  • Use Case: imagine building a data explorer that lists records with related entities like authors or categories, fetched in a single flow.

Quick Start

Use bknd-crud-read to fetch a single user by ID and include related data such as author or comments.

Frequently Asked Questions about bknd-crud-read

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I retrieve data from Bknd entities using the SDK or REST API?

To retrieve Bknd data, you can use the SDK or REST API to execute readOne, readMany, or readOneBy operations. These methods support filtering, sorting, field selection, and loading relations to fetch records efficiently.

Can I load related entities when querying Bknd records in a single request?

Yes, loading related entities is supported when querying Bknd records by using the with or join options. This allows you to fetch records alongside related data like authors or categories in a single flow.

What is the best way to fetch a single record by a specific field value in Bknd?

The best way to fetch a single record by a specific field value is using the readOneBy operation. This Bknd function allows you to target specific entity attributes and retrieve one matching record.

Does Bknd data retrieval support filtering, sorting, and field selection?

Yes, Bknd data retrieval fully supports filtering, sorting, and field selection. You can apply these parameters within readMany or readOne operations to customize the returned dataset for UI dashboards or integrations.

How does Bknd handle error management during data retrieval operations?

Bknd enforces structured response handling and robust error management during data retrieval operations. This ensures consistent access patterns and reliable execution for both UI workloads and system integrations.

When do I need to use readMany versus readOne for Bknd data queries?

You need readMany for querying multiple Bknd records simultaneously, such as listing data explorer entries, and readOne for fetching a single record by its ID. Both methods support filtering and loading relations.