returns [LibraryAssociation!]!
List every arc contributed by a taxonomy (via its structures).
For mapping taxonomies (fac-to-rs-gaap, rs-gaap-type-subtype) this is the primary browse view — the arcs ARE what the taxonomy contributes, not concepts. Each entry includes the from/to element qname + name so the UI can render the arc directly.
Pass structureId to scope to a single structure (one
presentation/calculation hierarchy).
| Name | Type | Description |
|---|---|---|
| taxonomyId | ID! | The taxonomy whose arcs to list. |
| associationType | String | Filter to one arc type, e.g. presentation or calculation. |
| structureId | ID | Scope the listing to a single structure - one presentation or calculation hierarchy. |
| limit | Int | Maximum rows to return, 1-1000. Omit to use this field's own default; out of range raises INVALID_PAGINATION. |
| offset | Int | Rows to skip before returning, 0 or greater. Out of range raises INVALID_PAGINATION. |
An arc between two library elements (parent-child, equivalence, etc).
| Field | Type | Description |
|---|---|---|
| id | String! | — |
| structureId | String! | — |
| structureName | String | — |
| fromElementId | String! | — |
| fromElementQname | String | — |
| fromElementName | String | — |
| fromElementTrait | String | Primary elementsOfFinancialStatements trait (for node coloring) |
| fromElementIsAbstract | Boolean | — |
| toElementId | String! | — |
| toElementQname | String | — |
| toElementName | String | — |
| toElementTrait | String | Primary elementsOfFinancialStatements trait (for node coloring) |
| toElementIsAbstract | Boolean | — |
| associationType | String! | presentation | calculation | mapping | equivalence | general-special | essence-alias |
| arcrole | String | — |
| orderValue | Float | — |
| weight | Float | — |
{ libraryTaxonomyArcs(taxonomyId: "...") { id structureId structureName fromElementId } }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": "{ libraryTaxonomyArcs(taxonomyId: \"...\") { id structureId structureName fromElementId } }"}'