OQL — Object Query Layer Author-side recipe for exposing a canister's data to OQL queries. The consumer side (forming and running queries) is handled by the Data Intelligence agent — your job is to declare entities over the data the app already keeps and install the mixin. include Expose({ ... }) adds two read-only shared query methods to the actor: schema(token : ?Text) : Text — a JSON catalogue of entities, their fields, primary keys, and edges. The discovery endpoint. execute(qJson : Text, token : ?Text) : Result — runs a JSON query (filter / order / paginate / project, aggregation, and dotted-path edge traversal) and returns typed Candid rows. The query endpoint. Show more Installs 587 Repository caffeinelabs/skills First Seen 4 days ago Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Pass
extension-oql
安装
npx skills add https://github.com/caffeinelabs/skills --skill extension-oql