mirror of
https://github.com/vercel/commerce.git
synced 2025-05-18 15:36:58 +00:00
15 lines
280 B
TypeScript
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
|