feat: admin logging + search
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
mutation($loggers: [LoggerInput]) {
|
||||
logging {
|
||||
updateLoggers(loggers: $loggers) {
|
||||
responseResult {
|
||||
succeeded
|
||||
errorCode
|
||||
slug
|
||||
message
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
query {
|
||||
logging {
|
||||
loggers(orderBy: "title ASC") {
|
||||
isEnabled
|
||||
key
|
||||
title
|
||||
description
|
||||
logo
|
||||
website
|
||||
level
|
||||
config {
|
||||
key
|
||||
value
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user