commerce/packages/reactioncommerce/utils/queries/get-all-collections-query.ts
2022-03-09 21:41:08 +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