13 lines
230 B
GraphQL
13 lines
230 B
GraphQL
query FetchAttributesWithMapping($cursor: String){
|
|
attributes(first: 100, after: $cursor){
|
|
pageInfo{
|
|
hasNextPage
|
|
endCursor
|
|
}
|
|
edges{
|
|
node{
|
|
...AttributeWithMappingFragment
|
|
}
|
|
}
|
|
}
|
|
}
|