Search documentation

Search across all documentation pages

Get API Key

GraphQL is for Nexar migration only

Use the GraphQL API only as a drop-in replacement for Nexar's GraphQL when migrating existing integrations. For new projects and full platform capabilities, use the REST API— it's the actively maintained, modern interface.
Queries

Categories

Page through or filter categories by ID or path from catalog source nodes.

List categories from catalog source nodes. supCategories is free — no part_match billing (abuse-tracked only).

Omit both ids and paths to page through all categories. When both are non-empty, categories matching either filter are returned.

Arguments

ParameterTypeRequiredDescription
ids
[String!]OptionalFilter by category ID
paths
[String!]OptionalMatch categories whose name contains any path term
start
IntOptionalOffset into the result set
limit
IntOptionalPage size (clamped to 1–200)

Example

GRAPHQL
1{
2 supCategories(start: 0, limit: 50) {
3 id
4 name
5 path
6 numParts
7 }
8}

Next