37 lines
603 B
GraphQL
37 lines
603 B
GraphQL
#import "./SummaryReportFragment.graphql"
|
|
|
|
query SummaryReportPage($id: ID!) {
|
|
viewer {
|
|
login
|
|
type
|
|
client {
|
|
id
|
|
email
|
|
type
|
|
}
|
|
summaryReportLayouts {
|
|
name
|
|
id
|
|
}
|
|
}
|
|
summaryReportLayout: node(id: $id) {
|
|
... on SummaryReportLayout {
|
|
id
|
|
data {
|
|
...SummaryReportFragment
|
|
}
|
|
}
|
|
}
|
|
primaryKey {
|
|
pleskKeyId
|
|
keyTraffic
|
|
}
|
|
os {
|
|
isUnix
|
|
}
|
|
server {
|
|
isSitebuilderAvailable
|
|
}
|
|
}
|
|
|