wikijs-fork/server/graph/schemas/storage.graphql

57 lines
1.1 KiB
GraphQL
Raw Normal View History

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 {
2019-02-03 22:08:06 +00:00
isAvailable: Boolean!
2018-06-26 02:04:47 +00:00
isEnabled: Boolean!
key: String!
title: String!
description: String
logo: String
website: String
2019-02-03 22:08:06 +00:00
supportedModes: [String]
2018-06-26 02:04:47 +00:00
mode: String
config: [KeyValuePair]
}
input StorageTargetInput {
isEnabled: Boolean!
key: String!
mode: String!
config: [KeyValuePairInput]
}