mirror of
https://github.com/vercel/commerce.git
synced 2025-05-18 23:46:58 +00:00
14 lines
367 B
TypeScript
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
|
|
}
|
|
}
|
|
}
|
|
`; |