17 lines
251 B
GraphQL
17 lines
251 B
GraphQL
![]() |
query FetchCustomers($cursor: String) {
|
||
|
customers(first: 100, after: $cursor) {
|
||
|
totalCount
|
||
|
pageInfo {
|
||
|
endCursor
|
||
|
hasNextPage
|
||
|
}
|
||
|
edges {
|
||
|
node {
|
||
|
... on User {
|
||
|
...Customer
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|