commerce/framework/reactioncommerce/utils/queries/get-all-collections-query.ts
Loan Laux 09249045eb
Add Reaction Commerce provider
Signed-off-by: Loan Laux <loan@outgrow.io>
2021-03-30 20:07:48 +04:00

15 lines
280 B
TypeScript

const getTagsQuery = /* GraphQL */ `
query getTags($first: ConnectionLimitInt!, $shopId: ID!) {
tags(first: $first, shopId: $shopId) {
edges {
node {
_id
displayTitle
slug
}
}
}
}
`
export default getTagsQuery