mirror of
https://github.com/vercel/commerce.git
synced 2025-05-08 02:37:58 +00:00
27 lines
423 B
TypeScript
27 lines
423 B
TypeScript
import metaFragment from './meta';
|
|
|
|
const listInfoFragment = /* GraphQL */ `
|
|
fragment ListInfo on PageInfoType {
|
|
id
|
|
alias
|
|
canonicalUrl
|
|
primaryImage
|
|
name
|
|
primaryDescription
|
|
secondaryDescription
|
|
hideTitle
|
|
hideDescription
|
|
logo
|
|
meta {
|
|
...Meta
|
|
}
|
|
subCategories {
|
|
name
|
|
alias
|
|
canonicalUrl
|
|
}
|
|
}
|
|
${metaFragment}
|
|
`;
|
|
export default listInfoFragment;
|