1
0
mirror of https://github.com/yldio/copilot.git synced 2024-09-21 05:43:52 +03:00
This commit is contained in:
JUDIT GRESKOVITS 2017-05-03 16:43:32 +01:00 committed by Judit Greskovits
parent 9ffeebbf04
commit 9e1c52f1f3

View File

@ -1,5 +1,4 @@
import { makeExecutableSchema } from 'graphql-tools'; import { makeExecutableSchema } from 'graphql-tools';
import resolvers from './resolvers'; import resolvers from './resolvers';
const schema = ` const schema = `
@ -46,7 +45,6 @@ type Service {
hash: String! hash: String!
version: Version! version: Version!
name: String! name: String!
project: String!
instances: [Instance]! instances: [Instance]!
metrics: [MetricType]! metrics: [MetricType]!
package: Package! # we don't have this in current mock data package: Package! # we don't have this in current mock data
@ -75,7 +73,6 @@ type Package {
type Instance { type Instance {
uuid: String! uuid: String!
name: String! name: String!
service: String!
metrics: [InstanceMetric]! metrics: [InstanceMetric]!
} }
@ -109,6 +106,10 @@ type Query {
datacenters: [Datacenter] datacenters: [Datacenter]
} }
type Mutation {
createDeployment: Deployment
}
`; `;
export default makeExecutableSchema({ export default makeExecutableSchema({