1
0
mirror of https://github.com/vercel/commerce.git synced 2025-06-05 15:56:59 +00:00
2022-01-14 13:33:59 -05:00

14 lines
367 B
TypeScript

export const getPageQuery = /* GraphQL */`
query($documentListName: String!, $filter: String!) {
documentListDocuments(documentListName: $documentListName, filter: $filter){
startIndex
totalCount
items {
id
name
listFQN
properties
}
}
}
`;