16 lines
280 B
GraphQL
16 lines
280 B
GraphQL
query SummaryReportScheduleAddPage($layoutId: ID!) {
|
|
viewer {
|
|
login
|
|
client {
|
|
id
|
|
email
|
|
}
|
|
}
|
|
summaryReportLayout: node(id: $layoutId) {
|
|
... on SummaryReportLayout {
|
|
id
|
|
name
|
|
}
|
|
}
|
|
}
|