Integrating data
A simple example of integrating categories into the system from scratch:
Fetch the first page of the Category stream
{
categoryStream(first: 1) {
pageInfo {
endCursor
hasNextPage
}
edges {
node {
code
name {
value
language
}
}
cursor
}
}
}Fetch the next page of the Category stream
A more complex example of integrating categories
Last updated
Was this helpful?

