returns [Element!]!
The rs-gaap concepts a chart-of-accounts element may map to.
Limited to concepts that actually render under the active Reporting Style — falling back to the rs-gaap-presentation set when no Style is seeded — with statement-level subtotals excluded. It is the same candidate set the mapping operator picks from, so a target that would land a fact on an unreachable branch is never offered.
| Name | Type | Description |
|---|---|---|
| classification | String! | The CoA element's EFS classification - asset, liability, equity, revenue, expense, gain or loss - whose eligible rs-gaap targets to return. |
Element with taxonomy context — extends AccountResponse.
| Field | Type | Description |
|---|---|---|
| id | String! | — |
| code | String | — |
| name | String! | — |
| description | String | — |
| qname | String | — |
| namespace | String | — |
| trait | String | — |
| subClassification | String | — |
| balanceType | String! | — |
| periodType | String! | — |
| isAbstract | Boolean! | — |
| elementType | String! | — |
| source | String! | — |
| taxonomyId | String | — |
| parentId | String | — |
| depth | Int! | — |
| isActive | Boolean! | — |
| externalId | String | — |
| externalSource | String | — |
{ mappingCandidates(classification: "...") { id code name description } }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": "{ mappingCandidates(classification: \"...\") { id code name description } }"}'