saleor-apps-redis_apl/apps/data-exporter/graphql/queries/FetchAttributesWithMapping.graphql
Krzysztof Wolski de12370c46 POC WIP
2023-09-18 09:28:01 +02:00

13 lines
230 B
GraphQL

query FetchAttributesWithMapping($cursor: String){
attributes(first: 100, after: $cursor){
pageInfo{
hasNextPage
endCursor
}
edges{
node{
...AttributeWithMappingFragment
}
}
}
}