mirror of
https://github.com/vercel/commerce.git
synced 2025-05-17 23:16:59 +00:00
18 lines
327 B
TypeScript
18 lines
327 B
TypeScript
export const getPageQuery = /* GraphQL */ `
|
|
query ($documentListName: String!, $filter: String!) {
|
|
documentListDocuments(
|
|
documentListName: $documentListName
|
|
filter: $filter
|
|
) {
|
|
startIndex
|
|
totalCount
|
|
items {
|
|
id
|
|
name
|
|
listFQN
|
|
properties
|
|
}
|
|
}
|
|
}
|
|
`
|