mirror of
https://github.com/vercel/commerce.git
synced 2025-05-18 23:46:58 +00:00
13 lines
296 B
TypeScript
13 lines
296 B
TypeScript
import discountMetaobject from '../fragments/discount-metaobject';
|
|
|
|
export const getDiscountMetaobjectsQuery = /* GraphQL */ `
|
|
query getDiscountMetaobjects {
|
|
metaobjects(type: "dynamic_discount", first: 10) {
|
|
nodes {
|
|
...metaobject
|
|
}
|
|
}
|
|
}
|
|
${discountMetaobject}
|
|
`;
|