Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Quick reference for the Caffeine Data Intelligence agent to query an OQL-exposing canister (schema() + execute()) through the `icp` CLI against the project's `backend` canister: read the schema, form JSON queries (filter / order / paginate / aggregate / dotted-path edges), and parse the Candid result rows.
.claude/skills/aiskillstore-extension-querying-oql/SKILL.md| Model | Eval pass | Runs |
|---|---|---|
| gemini-3.6-flash | 100% | 14 |
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | 230% | 0% |
| case-03 | ✗→✓ | ▲ Improved | 220% | 0% |
| case-08 | ✗→✓ | ▲ Improved | 118% | 0% |
| case-09 | ✗→✓ | ▲ Improved | 255% | 0% |
| case-14 | ✗→✓ | ▲ Improved | 143% | 0% |
An OQL canister exposes two read-only methods:
| Method | Returns | Purpose | |---|---|---| | schema() | one JSON Text | Catalogue of the canister's entities: each entity's primary key, fields, and edges. | | execute(qJson : text) | typed Candid Result | Runs a JSON-encoded query and returns matching rows. |
The icp CLI is already installed and configured in the sandbox; the canister name backend resolves to the project's canister (no identity, no canister ID). Both methods are query calls, so every invocation uses --query:
bashicp canister call backend schema '()' --query icp canister call backend execute '("<json-query>")' --query
execute takes one text argument — the JSON query embedded as a Candid text literal. Wrap the JSON in ("...") and escape every " as \". The query {"start":"customer","limit":3} becomes:
bashicp canister call backend execute '("{\"start\":\"customer\",\"limit\":3}")' --query
schema() returns its JSON the same way — a Candid text literal ("...escaped json..."); unescape \" → " (and \\ → \) to read it. Add --branch live to read the deployed canister instead of the draft (live is query-only). If a string value contains a single quote, escape it for the shell with '\''.
icp canister call backend schema '()' --query — cache it for the session; it changes only between deployments (§1).typeName and values to choose literal types, and role: {"edge": ...} to see how entities connect.where (§2.1), orderBy / limit / offset, select, and aggregate / groupBy (§2.2). Cross a forward edge with a dotted path in a single query (§4.1); a reverse one-to-many needs the parent keys first, then in (§4.2).icp canister call backend execute '("<json>")' --query — parse the Candid rows by cell name (§3); if hasMore, page with offset (§5).schemaFetch once and cache for the session — it only changes between canister deployments.
bashicp canister call backend schema '()' --query
Read it like this:
name → entity name; use it as start in queries.primaryKey → field whose value identifies a row. An edge{"to": "<entity>"} value is a primary-key value in that target.
fields → each field's name, scalar typeName, and role:"payload" (plain field) or {"edge": {"to": "<entity>"}} (a foreign key — how you traverse the graph). Names may carry a __1, __2, … suffix when two columns would share a name — use the exact names schema() reports.
values (optional) → the exact literals a field can hold(typically a variant's arms). Filter with those literals, not guesses: ["free","pro","enterprise"] means query "enterprise", not "Enterprise". Absent ⇒ unbounded — sample it with a query if you need candidates.
typeName → JSON literal type for value:"Nat" → unsigned integer (0, 1, …)"Int" → signed integer (-1, 0, 1, …)"Float" → JSON number with a decimal point (0.5, -3.14,1.0e2). A bare integer (10) is also accepted — numeric variants bridge, so gt(price, 10) matches a price : Float = 12.5 row. Float equality is bitwise IEEE-754; use a range (ge + le) for decimals like 0.42 with no exact binary form.
"Bool" → true / false"Text" → JSON string. Principal fields report as "Text"(canonical textual form) — filter them with a string value.
executeA query is a single JSON object. Only start is required.
json{ "start": "<entityName>", "where": <Predicate>, "groupBy": ["<fieldName>", ...], "aggregate": [{ "fn": "count|sum|avg|min|max", "field": "<fieldName>", "as": "<outName>" }, ...], "orderBy": [{ "field": "<fieldName>", "dir": "asc|desc" }, ...], "offset": <Nat>, "limit": <Nat>, "select": ["<fieldName>", ...] }
| Field | Default | Notes | |---|---|---| | start | (required) | An entity name from schema(). | | where | omit ⇒ no filter | A single predicate (§2.1) — not wrapped in {"filter": ...}. | | groupBy | [] | Bucket rows by these fields; one output row per distinct combination (§2.2). | | aggregate | [] | Aggregates per bucket, or over all rows when groupBy is empty (§2.2). | | orderBy | [] (canister-defined order, typically insertion order) | Multi-key sort, first clause primary. dir defaults "asc". | | offset | 0 | Drop the first N matches. | | limit | every match | Keep at most N. hasMore in the result tells you if more exist. | | select | every non-hidden field (or, when aggregating, group-key + aggregate columns) | Subset projection. |
bashicp canister call backend execute '("{\"start\":\"customer\",\"limit\":3}")' --query
Filter + sort + project — the core shape (where + orderBy + limit + select):
bashicp canister call backend execute '("{\"start\":\"customer\",\"where\":{\"eq\":{\"field\":\"plan\",\"value\":\"enterprise\"}},\"orderBy\":[{\"field\":\"monthlyRevenueUsd\",\"dir\":\"desc\"}],\"limit\":5,\"select\":[\"companyName\",\"monthlyRevenueUsd\",\"accountManagerName\"]}")' --query
A Predicate is a JSON object with exactly one key that names the operator.
| Operator | Shape | Meaning | |---|---|---| | eq / ne / lt / le / gt / ge | {"<op>": { "field": "<name>", "value": <scalar> } } | Scalar relation. | | in | {"in": { "field": "<name>", "value": [<scalar>, ...] } } | Membership; empty array matches nothing. | | contains / startsWith / endsWith | {"<op>": { "field": "<name>", "value": "<text>" } } | Case-sensitive substring / prefix / suffix on Text — server-side scan, no need to page rows into context. | | icontains | {"icontains": { "field": "<name>", "value": "<text>" } } | Case-insensitive contains. Prefer this for user-typed search terms. | | and / or / not | {"and": [<P>, ...]} / {"or": [<P>, ...]} / {"not": <P>} | Boolean composition. |
Text search runs server-side — "the customer whose name mentions north" is one query, not a row scan into context:
bashicp canister call backend execute '("{\"start\":\"customer\",\"where\":{\"icontains\":{\"field\":\"companyName\",\"value\":\"north\"}},\"select\":[\"companyName\",\"accountManagerName\"]}")' --query
<scalar> must match the field's typeName:
| JSON | Maps to | Use for fields with typeName | |---|---|---| | null | null_ | any nullable field (rare in where) | | true / false | bool | "Bool" | | 0, 1, 42 | nat | "Nat" (also matches "Float" via numeric bridging) | | -1, -42 | int | "Int" (also matches "Float" via numeric bridging) | | 0.5, -3.14, 1.0e2 | float | "Float" | | "foo" | text | "Text" |
A row whose field is null_ fails every relation except ne. Filter by relationship with field = "<edge>" and value = the target entity's primary-key value; or read through an edge with "<edge>.<targetField>" (§4.1).
Compute on the canister instead of fetching every row and tallying client-side. fn is count/sum/avg/min/max; field is required for every fn except count; min/max also work on text. as renames the output column (default count, sum_<field>, …) and must not contain . (dots are the edge-traversal separator — parse error). For a dotted field the default joins segments with _ (sum of dept.budget → sum_dept_budget). aggregate with no groupBy → one row over the whole filtered set (count of an empty match is 0). groupBy with no aggregate → a server-side DISTINCT. Output rows contain only the group-key + aggregate columns.
"How many enterprise customers?" — count over a filtered set, one row out:
bashicp canister call backend execute '("{\"start\":\"customer\",\"where\":{\"eq\":{\"field\":\"plan\",\"value\":\"enterprise\"}},\"aggregate\":[{\"fn\":\"count\"}]}")' --query
"Which account manager has the most customers, and total MRR?" — groupBy + count + sum:
bashicp canister call backend execute '("{\"start\":\"customer\",\"groupBy\":[\"accountManager\"],\"aggregate\":[{\"fn\":\"count\"},{\"fn\":\"sum\",\"field\":\"monthlyRevenueUsd\",\"as\":\"mrr\"}],\"orderBy\":[{\"field\":\"count\",\"dir\":\"desc\"}],\"limit\":1}")' --query
candidtype Value = variant { null_; bool : bool; nat : nat; int : int; float : float; text : text }; type Cell = record { name : text; value : Value }; type Result = record { rows : vec vec Cell; hasMore : bool };
The outer rows = vec { ... } is the row list; each inner vec { ... } is one row. Each record { value = variant { "<tag>" = <payload> }; name = "<field>" } is one cell — name tells you which field, the <tag> tells you the scalar type, the payload is the value. 35_000 : nat underscores are digit separators — strip them if parsing. hasMore = false ⇒ you got every match; hasMore = true ⇒ truncated, fetch the next page. Look cells up by name, not position — order shifts if select changes.
Forward (single-valued) relationships are one query: a dotted path crosses a declared edge, in any field position. Reverse (one-to-many) relationships stay two queries with the in pattern (§4.2).
"<edgeField>.<targetField>" reads through the edge server-side — in where, groupBy, orderBy, aggregate.field, and select. Project through an edge in one query:
bashicp canister call backend execute '("{\"start\":\"customer\",\"where\":{\"eq\":{\"field\":\"companyName\",\"value\":\"Northstar Public\"}},\"select\":[\"companyName\",\"accountManager.name\",\"accountManager.office\"]}")' --query
Multi-hop chains work ("manager.department.name", max 4 hops), and it composes with aggregation — "average revenue by the account manager's office" is one call:
bashicp canister call backend execute '("{\"start\":\"customer\",\"groupBy\":[\"accountManager.office\"],\"aggregate\":[{\"fn\":\"avg\",\"field\":\"monthlyRevenueUsd\",\"as\":\"avg_mrr\"}],\"orderBy\":[{\"field\":\"avg_mrr\",\"dir\":\"desc\"}]}")' --query
Rules:
role is{"edge": {"to": ... }} in schema() — a dotted path into a non-edge field traps, even if its values look like foreign keys (traversal is schema-driven, not name-guessed). If the author didn't declare the edge, fall back to the two-query pattern below.
null(left-join): the row fails every relation except ne, and projects the cell as null.
start entity's rows: avg of "department.budget" from employee is employee-weighted. For per-department numbers, start from department — or group by the dotted path and aggregate start-entity fields.
"accountManager") still returns theFK scalar; there is no .* — name each target field you want.
eq for one parent primary key, in for a batch — on the edge field, with the target entity's primary-key values.
bashicp canister call backend execute '("{\"start\":\"customer\",\"where\":{\"eq\":{\"field\":\"accountManager\",\"value\":\"daniel@helix.systems\"}},\"select\":[\"companyName\",\"monthlyRevenueUsd\"]}")' --query
When the parent condition is a plain predicate, you don't need the batch — it's a forward filter through the edge (§4.1). "All customers managed by anyone in the Berlin office" is one query:
bashicp canister call backend execute '("{\"start\":\"customer\",\"where\":{\"eq\":{\"field\":\"accountManager.office\",\"value\":\"Berlin\"}},\"select\":[\"companyName\",\"monthlyRevenueUsd\"]}")' --query
The batch in pattern is required when the parent set needs its own query shape (top-N, ordered, paginated): collect the keys first, then in on the edge field. "Customers managed by the three most senior employees" is two queries:
bashicp canister call backend execute '("{\"start\":\"employee\",\"orderBy\":[{\"field\":\"level\",\"dir\":\"desc\"}],\"limit\":3,\"select\":[\"email\"]}")' --query # collect the three emails from the rows, then: icp canister call backend execute '("{\"start\":\"customer\",\"where\":{\"in\":{\"field\":\"accountManager\",\"value\":[\"alex@helix.systems\",\"james@helix.systems\",\"sarah@helix.systems\"]}},\"select\":[\"companyName\",\"monthlyRevenueUsd\"]}")' --query
Always batch with in rather than running N separate eq queries.
Stack with and / or:
bashicp canister call backend execute '("{\"start\":\"customer\",\"where\":{\"and\":[{\"eq\":{\"field\":\"plan\",\"value\":\"enterprise\"}},{\"in\":{\"field\":\"country\",\"value\":[\"US\",\"CA\",\"DE\"]}},{\"ge\":{\"field\":\"monthlyRevenueUsd\",\"value\":20000}}]},\"orderBy\":[{\"field\":\"monthlyRevenueUsd\",\"dir\":\"desc\"}]}")' --query
When the parent key isn't given but must be looked up first — e.g. "who reports to the lead of project forge20?" — run two queries. The second filters on a self-edge (employee.manager → employee) by the key the first query returned:
bashicp canister call backend execute '("{\"start\":\"project\",\"where\":{\"eq\":{\"field\":\"codename\",\"value\":\"forge20\"}},\"select\":[\"lead\"]}")' --query # the row's `lead` cell is the lead's email, e.g. priya@helix.systems — use it as the parent key: icp canister call backend execute '("{\"start\":\"employee\",\"where\":{\"eq\":{\"field\":\"manager\",\"value\":\"priya@helix.systems\"}},\"select\":[\"name\",\"jobTitle\",\"level\"]}")' --query
limit caps results. hasMore reports truncation. Walk pages with offset:
textoffset = 0 limit = 25 loop: result = icp canister call backend execute '("{\"start\":\"...\",\"limit\":25,\"offset\":<offset>,...}")' --query consume result.rows if not result.hasMore: break offset += limit
Always set limit explicitly. OQL itself imposes no cap (omitting limit returns every match), and a canister author may add one — in which case over-asking is silently truncated.
| Symptom | Cause / Fix | |---|---| | execute traps OQL: unknown entity '...' | start doesn't match any name from schema() — entity names are case-sensitive. Re-read the schema. | | execute traps with a parse error | The JSON was malformed (trailing comma, single quotes), or not escaped as a Candid text literal — wrap as ("...") with every inner " escaped as \". Validate the JSON with python3 -m json.tool first. | | No rows returned for a filter you expect to match | (1) value literal type doesn't match the field's typeName ("5" for a Nat); (2) typo in field — unknown fields are silently null_, so most predicates fail; (3) the field is genuinely null_ in storage. | | gt / lt returns weird results across types | Mixed-type comparisons aren't defined. Make sure both operands are the same typeName. | | contains misses rows you can see | contains / startsWith / endsWith are case-sensitive. Use icontains for user-typed search terms. | | Dotted path traps 'x' is not an edge of 'y' | The head segment isn't a declared edge — traversal is schema-driven even when values look like FKs. Use the two-query in pattern instead. | | Cross-entity average looks wrong | Aggregates run over the start entity's rows. Start from the entity whose rows you want averaged, or group by the dotted path and aggregate start-entity fields. | | execute returns rows but missing fields | A field you select-ed isn't in the entity (typo, or hidden by the author). Drop it from select, or remove select for the default projection. |
There is no structured error envelope. Any failure is a trap — fix the query and retry.
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-01 | fail→pass | 12,192 | 8,099 | -34% | 1 | 1 | 0% | 1,554 | 5,134 | +230% | 0 | 0 | — |
case-02 | fail→fail | 7,211 | 4,731 | -34% | 1 | 1 | 0% | 1,175 | 4,976 | +323% | 0 | 0 | — |
case-03 | fail→pass | 11,935 | 12,581 | +5% | 1 | 1 | 0% | 1,939 | 6,199 | +220% | 0 | 0 | — |
case-04 | pass→pass | 21,189 | 21,698 | +2% | 1 | 1 | 0% | 3,008 | 7,699 | +156% | 0 | 0 | — |
case-05 | pass→pass | 14,244 | 19,142 | +34% | 1 | 1 | 0% | 2,587 | 7,380 | +185% | 0 | 0 | — |
case-06 | pass→pass | 10,763 | 15,769 | +47% | 1 | 1 | 0% | 2,064 | 6,872 | +233% | 0 | 0 | — |
case-07 | pass→pass | 13,418 | 2,859 | -79% | 1 | 1 | 0% | 1,558 | 5,315 | +241% | 0 | 0 | — |
case-08 | fail→pass | 22,212 | 8,127 | -63% | 1 | 1 | 0% | 2,867 | 6,263 | +118% | 0 | 0 | — |
case-09 | fail→pass | 16,447 | 27,714 | +69% | 1 | 1 | 0% | 1,957 | 6,948 | +255% | 0 | 0 | — |
case-10 | fail→fail | 11,956 | 10,824 | -9% | 1 | 1 | 0% | 1,193 | 4,938 | +314% | 0 | 0 | — |
case-16 | pass→pass | 14,843 | 11,499 | -23% | 1 | 1 | 0% | 1,672 | 5,948 | +256% | 0 | 0 | — |
case-11 | fail→fail | 16,193 | 15,026 | -7% | 1 | 1 | 0% | 1,917 | 5,006 | +161% | 0 | 0 | — |
case-12 | pass→pass | 11,556 | 11,218 | -3% | 1 | 1 | 0% | 1,983 | 5,824 | +194% | 0 | 0 | — |
case-13 | pass→pass | 8,253 | 5,797 | -30% | 1 | 1 | 0% | 1,569 | 5,938 | +278% | 0 | 0 | — |
case-14 | fail→pass | 18,592 | 8,185 | -56% | 1 | 1 | 0% | 2,212 | 5,373 | +143% | 0 | 0 | — |
case-15 | pass→pass | 11,953 | 3,933 | -67% | 1 | 1 | 0% | 1,825 | 5,335 | +192% | 0 | 0 | — |
case-17 | fail→pass | 18,376 | 9,240 | -50% | 1 | 1 | 0% | 1,866 | 5,416 | +190% | 0 | 0 | — |
case-18 | pass→pass | 19,754 | 11,158 | -44% | 1 | 1 | 0% | 2,248 | 5,801 | +158% | 0 | 0 | — |
case-19 | pass→pass | 29,189 | 7,036 | -76% | 1 | 1 | 0% | 2,425 | 5,066 | +109% | 0 | 0 | — |
case-20 | pass→pass | 10,253 | 10,681 | +4% | 1 | 1 | 0% | 604 | 5,067 | +739% | 0 | 0 | — |
case-21 | fail→pass | 13,813 | 9,865 | -29% | 1 | 1 | 0% | 2,442 | 5,680 | +133% | 0 | 0 | — |
case-22 | pass→pass | 12,789 | 2,703 | -79% | 1 | 1 | 0% | 1,979 | 5,179 | +162% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 22 cases were attempted, and 19 counted toward the lift figure. The other 3 produced results that are not comparable between the two arms, so they are excluded from the headline rather than averaged into it. The headline lift of +32 percentage points is the difference between those two pass rates over the 19 comparable cases.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.