25 lines
438 B
GraphQL
25 lines
438 B
GraphQL
query SummaryReportSchedulesPage($id: ID!) {
|
|
viewer {
|
|
login
|
|
type
|
|
client {
|
|
id
|
|
email
|
|
}
|
|
}
|
|
summaryReportLayout: node(id: $id) {
|
|
... on SummaryReportLayout {
|
|
id
|
|
name
|
|
schedules {
|
|
id
|
|
isEnabled
|
|
period
|
|
lastSentDate
|
|
email
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|