"""
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]
}