30 lines
792 B
GraphQL
30 lines
792 B
GraphQL
#import "queries/VirtualDirectoryParentContentFragment.graphql"
|
|
|
|
query CreateVirtualDirectoryPage(
|
|
$domainId: ID!,
|
|
$parentPath: String!,
|
|
) {
|
|
domain: node(id: $domainId) {
|
|
... on Domain {
|
|
id
|
|
baseDomain {
|
|
id
|
|
}
|
|
webScriptingSettings {
|
|
asp
|
|
}
|
|
hosting {
|
|
parentDirectory: virtualDirectory (path: $parentPath) {
|
|
...VirtualDirectoryParentContentFragment
|
|
properties {
|
|
aspBufferingLimit
|
|
aspMaxRequestEntityAllowed
|
|
aspEnableServerDebug
|
|
aspEnableClientDebug
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|