39 lines
1.1 KiB
GraphQL
39 lines
1.1 KiB
GraphQL
query VirtualDirectoryContentList(
|
|
$domainId: ID!,
|
|
$path: String!,
|
|
$input: VirtualDirectoryContentListInput
|
|
) {
|
|
domain: node(id: $domainId) {
|
|
... on Domain {
|
|
id
|
|
hosting {
|
|
virtualDirectory(path: $path) {
|
|
key
|
|
content(input: $input) {
|
|
nodes {
|
|
name
|
|
type
|
|
fileType
|
|
isProtected
|
|
isReserved
|
|
canManagePermissions
|
|
doesExist
|
|
baseName
|
|
dirName
|
|
}
|
|
pageInfo {
|
|
current
|
|
total
|
|
pageCount
|
|
}
|
|
sortInfo {
|
|
sortColumn
|
|
sortDirection
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|