Browse the extensions reference

mapping

returns MappingDetail

Single mapping structure with all associations.

Arguments

NameTypeDescription
mappingIdString!The mapping structure's id.

Returns MappingDetail

A mapping structure with all its associations.

FieldTypeDescription
idString!
nameString!
blockTypeString!
taxonomyIdString!
associations[Association!]!
totalAssociationsInt!

Example

query
{ mapping(mappingId: "...") { id name blockType taxonomyId } }
curl
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 } }"}'