returns MappingDetail
Single mapping structure with all associations.
| Name | Type | Description |
|---|---|---|
| mappingId | String! | The mapping structure's id. |
A mapping structure with all its associations.
| Field | Type | Description |
|---|---|---|
| id | String! | — |
| name | String! | — |
| blockType | String! | — |
| taxonomyId | String! | — |
| associations | [Association!]! | — |
| totalAssociations | Int! | — |
{ mapping(mappingId: "...") { 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": "{ mapping(mappingId: \"...\") { id name blockType taxonomyId } }"}'