summaryrefslogtreecommitdiff
path: root/src/services/api/graphql/graphql/schema/system_status.graphql
blob: be8d875351c871cdd4e22f1616192a306e2ebcb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"""
Use 'scalar Generic' for system status output, to avoid attempts to
JSON-serialize in case of JSON output.
"""

input SystemStatusInput {
    key: String!
}

type SystemStatus {
    result: Generic
}

type SystemStatusResult {
    data: SystemStatus
    success: Boolean!
    errors: [String]
}