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.
52 lines
966 B
52 lines
966 B
# ===============================================
|
|
# STORAGE
|
|
# ===============================================
|
|
|
|
extend type Query {
|
|
storage: StorageQuery
|
|
}
|
|
|
|
extend type Mutation {
|
|
storage: StorageMutation
|
|
}
|
|
|
|
# -----------------------------------------------
|
|
# QUERIES
|
|
# -----------------------------------------------
|
|
|
|
type StorageQuery {
|
|
targets(
|
|
filter: String
|
|
orderBy: String
|
|
): [StorageTarget]
|
|
}
|
|
|
|
# -----------------------------------------------
|
|
# MUTATIONS
|
|
# -----------------------------------------------
|
|
|
|
type StorageMutation {
|
|
updateTargets(
|
|
targets: [StorageTargetInput]
|
|
): DefaultResponse
|
|
}
|
|
|
|
# -----------------------------------------------
|
|
# TYPES
|
|
# -----------------------------------------------
|
|
|
|
type StorageTarget {
|
|
isEnabled: Boolean!
|
|
key: String!
|
|
title: String!
|
|
mode: String
|
|
config: [KeyValuePair]
|
|
}
|
|
|
|
input StorageTargetInput {
|
|
isEnabled: Boolean!
|
|
key: String!
|
|
mode: String!
|
|
config: [KeyValuePairInput]
|
|
}
|