feat: admin logging + search

This commit is contained in:
Nicolas Giard
2018-09-01 22:37:20 -04:00
parent 5919d14670
commit 019537563e
15 changed files with 550 additions and 69 deletions

View File

@@ -0,0 +1,12 @@
mutation($loggers: [LoggerInput]) {
logging {
updateLoggers(loggers: $loggers) {
responseResult {
succeeded
errorCode
slug
message
}
}
}
}

View File

@@ -0,0 +1,17 @@
query {
logging {
loggers(orderBy: "title ASC") {
isEnabled
key
title
description
logo
website
level
config {
key
value
}
}
}
}