123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- # ===============================================
- # 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]
- }
|