2018-06-26 02:04:47 +00:00
|
|
|
# ===============================================
|
|
|
|
# STORAGE
|
|
|
|
# ===============================================
|
|
|
|
|
|
|
|
extend type Query {
|
|
|
|
storage: StorageQuery
|
|
|
|
}
|
|
|
|
|
|
|
|
extend type Mutation {
|
|
|
|
storage: StorageMutation
|
|
|
|
}
|
|
|
|
|
|
|
|
# -----------------------------------------------
|
|
|
|
# QUERIES
|
|
|
|
# -----------------------------------------------
|
|
|
|
|
|
|
|
type StorageQuery {
|
|
|
|
targets(
|
|
|
|
filter: String
|
|
|
|
orderBy: String
|
2018-10-14 21:38:39 +00:00
|
|
|
): [StorageTarget] @auth(requires: ["manage:system"])
|
2018-06-26 02:04:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# -----------------------------------------------
|
|
|
|
# MUTATIONS
|
|
|
|
# -----------------------------------------------
|
|
|
|
|
|
|
|
type StorageMutation {
|
|
|
|
updateTargets(
|
|
|
|
targets: [StorageTargetInput]
|
2018-10-14 21:38:39 +00:00
|
|
|
): DefaultResponse @auth(requires: ["manage:system"])
|
2018-06-26 02:04:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# -----------------------------------------------
|
|
|
|
# TYPES
|
|
|
|
# -----------------------------------------------
|
|
|
|
|
|
|
|
type StorageTarget {
|
|
|
|
isEnabled: Boolean!
|
|
|
|
key: String!
|
|
|
|
title: String!
|
2018-08-05 15:27:46 +00:00
|
|
|
description: String
|
|
|
|
logo: String
|
|
|
|
website: String
|
2018-06-26 02:04:47 +00:00
|
|
|
mode: String
|
|
|
|
config: [KeyValuePair]
|
|
|
|
}
|
|
|
|
|
|
|
|
input StorageTargetInput {
|
|
|
|
isEnabled: Boolean!
|
|
|
|
key: String!
|
|
|
|
mode: String!
|
|
|
|
config: [KeyValuePairInput]
|
|
|
|
}
|