11 lines
231 B
GraphQL
11 lines
231 B
GraphQL
query ProtectedDirectoryAddPage($domainId: ID!) {
|
|
domain: node(id: $domainId) {
|
|
... on Domain {
|
|
id
|
|
hosting {
|
|
isProtectedDirectoryLocationSupported
|
|
}
|
|
}
|
|
}
|
|
}
|