Files
server/opt/psa/admin/cp/queries/ProtectedDirectoryList.graphql
cutemeli 0bfc6c8425 Initial
2025-12-22 10:32:59 +00:00

31 lines
729 B
GraphQL

query ProtectedDirectoryList(
$id: ID!
$input: ProtectedDirectoryListInput
) {
domain: node(id: $id) {
... on Domain {
id
hosting {
protectedDirectories(
input: $input
) {
nodes {
id
path
realm
}
pageInfo {
current
total
pageCount
}
sortInfo {
sortColumn
sortDirection
}
}
}
}
}
}