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