returns [LibraryStructure!]!
List structures (extended link roles) — BS, IS, custom, etc.
| Name | Type | Description |
|---|---|---|
| taxonomyId | ID | Filter to structures of one taxonomy. |
| blockType | String | Filter to one block type. |
A named structure (extended link role) within a library taxonomy.
| Field | Type | Description |
|---|---|---|
| id | String! | — |
| name | String! | — |
| blockType | String! | balance_sheet | income_statement | cash_flow_statement | custom | … |
| taxonomyId | String! | — |
| roleUri | String | Original XBRL role URI if any |
| isActive | Boolean! | — |
{ libraryStructures { id name blockType taxonomyId } }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": "{ libraryStructures { id name blockType taxonomyId } }"}'