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

input ShowConfigInput {
    key: String!
    path: [String!]!
    configFormat: String
}

type ShowConfig {
    path: [String]
    result: Generic
}

type ShowConfigResult {
    data: ShowConfig
    success: Boolean!
    errors: [String]
}