1
0
mirror of https://github.com/yldio/copilot.git synced 2024-11-14 23:30:05 +02:00

fix(cp-gql-schema): typos

This commit is contained in:
Sérgio Ramos 2017-08-21 17:46:26 +01:00
parent cc9dc08247
commit 7cce1e6f8e

View File

@ -198,7 +198,7 @@ enum MetricName {
type InstanceMetric { type InstanceMetric {
instance: String! instance: String!
name: MetricName! name: MetricName!
metrics: [Metrics] metrics: [Metric]
} }
@ -263,7 +263,7 @@ type Query {
): [Service] ): [Service]
importableDeploymentGroups: [DeploymentGroup] importableDeploymentGroups: [DeploymentGroup]
# start and end should be .toISOString() date strings # start and end should be .toISOString() date strings
metrics(deploymentGroupId: ID!, names: [MerticName]!, instances: [String]!, start: String!, end: String!): [InstanceMetric] metrics(deploymentGroupId: ID!, names: [MetricName]!, instances: [String]!, start: String!, end: String!): [InstanceMetric]
} }
type Mutation { type Mutation {