returns [LibraryElement!]!
Substring search across qname, name, and standard label text.
| Name | Type | Description |
|---|---|---|
| query | String! | Substring matched against qname, name and standard label text. |
| source | String | Restrict the search to one standard. |
| limit | Int | Maximum rows to return, 1-1000. Omit to use this field's own default; out of range raises INVALID_PAGINATION. |
A library element (concept, abstract, axis, member, or hypercube).
| Field | Type | Description |
|---|---|---|
| id | String! | — |
| qname | String! | Qualified name, e.g. 'fac:Assets' |
| namespace | String | — |
| name | String! | — |
| trait | String | FASB elementsOfFinancialStatements axis: asset | contraAsset | liability | contraLiability | equity | contraEquity | temporaryEquity | revenue | expense | expenseReversal | gain | loss | comprehensiveIncome | investmentByOwners | distributionToOwners | metric (derived subtotals, not SFAC 6 primary elements). Null for structural rows. |
| balanceType | String! | debit | credit |
| periodType | String! | instant | duration |
| isAbstract | Boolean! | — |
| isMonetary | Boolean! | — |
| elementType | String! | concept | abstract | axis | member | hypercube |
| source | String! | fac | us-gaap | rs-gaap | … |
| taxonomyId | String | — |
| parentId | String | — |
| labels | [LibraryLabel!]! | — |
| references | [LibraryReference!]! | — |
{ searchLibraryElements(query: "...") { id qname namespace name } }curl -X POST "https://api.robosystems.ai/extensions/$GRAPH_ID/graphql" \
-H "X-API-Key: $ROBOSYSTEMS_API_KEY" \
-H "Content-Type: application/json" \
-d '{"query": "{ searchLibraryElements(query: \"...\") { id qname namespace name } }"}'