123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- # ===============================================
- # 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!
- description: String
- logo: String
- website: String
- mode: String
- config: [KeyValuePair]
- }
- input StorageTargetInput {
- isEnabled: Boolean!
- key: String!
- mode: String!
- config: [KeyValuePairInput]
- }
|