Browse the extensions reference

elements

returns ElementList

Paginated list of taxonomy elements.

Arguments

NameTypeDescription
taxonomyIdStringFilter to elements of one taxonomy.
sourceStringFilter by the element's originating system.
classificationStringFilter on the element's statement classification.
isAbstractBooleanTrue for abstract presentation nodes only, false for concrete elements, omit for both.
limitIntMaximum rows to return, 1-1000. Omit to use this field's own default; out of range raises INVALID_PAGINATION.
offsetIntRows to skip before returning, 0 or greater. Out of range raises INVALID_PAGINATION.

Returns ElementList

Paginated element listing with taxonomy context.

FieldTypeDescription
elements[Element!]!
paginationPaginationInfo!

Example

query
{ elements }
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": "{ elements }"}'