2022-04-20 15:29:34 +05:00

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
}
}
}
`