mirror of https://github.com/requarks/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
995 B
55 lines
995 B
6 years ago
|
# ===============================================
|
||
|
# LOGGING
|
||
|
# ===============================================
|
||
|
|
||
|
extend type Query {
|
||
|
logging: LoggingQuery
|
||
|
}
|
||
|
|
||
|
extend type Mutation {
|
||
|
logging: LoggingMutation
|
||
|
}
|
||
|
|
||
|
# -----------------------------------------------
|
||
|
# QUERIES
|
||
|
# -----------------------------------------------
|
||
|
|
||
|
type LoggingQuery {
|
||
|
loggers(
|
||
|
filter: String
|
||
|
orderBy: String
|
||
|
): [Logger]
|
||
|
}
|
||
|
|
||
|
# -----------------------------------------------
|
||
|
# MUTATIONS
|
||
|
# -----------------------------------------------
|
||
|
|
||
|
type LoggingMutation {
|
||
|
updateLoggers(
|
||
|
loggers: [LoggerInput]
|
||
|
): DefaultResponse
|
||
|
}
|
||
|
|
||
|
# -----------------------------------------------
|
||
|
# TYPES
|
||
|
# -----------------------------------------------
|
||
|
|
||
|
type Logger {
|
||
|
isEnabled: Boolean!
|
||
|
key: String!
|
||
|
title: String!
|
||
|
description: String
|
||
|
logo: String
|
||
|
website: String
|
||
|
level: String
|
||
|
config: [KeyValuePair]
|
||
|
}
|
||
|
|
||
|
input LoggerInput {
|
||
|
isEnabled: Boolean!
|
||
|
key: String!
|
||
|
level: String!
|
||
|
config: [KeyValuePairInput]
|
||
|
}
|