16 lines
334 B
GraphQL
16 lines
334 B
GraphQL
query SummaryReportLayoutEditPage($id: ID!) {
|
|
summaryReportLayout: node(id: $id) {
|
|
... on SummaryReportLayout {
|
|
id
|
|
name
|
|
isDefault
|
|
general
|
|
resellers
|
|
clients
|
|
personalClients
|
|
domains
|
|
personalDomains
|
|
}
|
|
}
|
|
}
|