9 lines
160 B
GraphQL
9 lines
160 B
GraphQL
type SystemSettingsQueryOutput {
|
|
data: [SystemSetting]
|
|
error: SystemSettingsQueryOutputError
|
|
}
|
|
|
|
type Query {
|
|
systemSettings: SystemSettingsQueryOutput!
|
|
}
|