saleor-apps-redis_apl/apps/data-exporter/graphql/queries/FetchAttributesWithMapping.graphql

14 lines
230 B
GraphQL
Raw Normal View History

2023-09-18 07:28:01 +00:00
query FetchAttributesWithMapping($cursor: String){
attributes(first: 100, after: $cursor){
pageInfo{
hasNextPage
endCursor
}
edges{
node{
...AttributeWithMappingFragment
}
}
}
}