returns [LibraryTaxonomy!]!
List taxonomies visible to this graph.
On the library sentinel returns only shared/canonical taxonomies. On a tenant graph_id also returns tenant-owned taxonomies (e.g. CoA).
| Name | Type | Description |
|---|---|---|
| standard | String | Filter to one standard, e.g. us-gaap. |
| includeElementCount | Boolean | Include each taxonomy's element count. Costs an extra aggregate per row. |
A library taxonomy (fac, us-gaap, rs-gaap, …).
| Field | Type | Description |
|---|---|---|
| id | String! | — |
| name | String! | — |
| description | String | — |
| standard | String | fac | us-gaap | rs-gaap | ifrs |
| version | String | — |
| namespaceUri | String | — |
| taxonomyType | String! | chart_of_accounts | reporting | mapping | schedule |
| isShared | Boolean! | — |
| isActive | Boolean! | — |
| isLocked | Boolean! | — |
| elementCount | Int | Total elements in this taxonomy (computed on demand) |
{ libraryTaxonomies { id name description standard } }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": "{ libraryTaxonomies { id name description standard } }"}'