16 lines
388 B
GraphQL
16 lines
388 B
GraphQL
#import "queries/ProtectedDirectoryEditFragment.graphql"
|
|
|
|
query ProtectedDirectoryEditPage($domainId: ID!, $id: ID!) {
|
|
protectedDirectory: node(id: $id) {
|
|
...ProtectedDirectoryEditFragment
|
|
}
|
|
domain: node(id: $domainId) {
|
|
... on Domain {
|
|
id
|
|
hosting {
|
|
isProtectedDirectoryLocationSupported
|
|
}
|
|
}
|
|
}
|
|
}
|