apollo-language-server
Version:
A language server for Apollo GraphQL projects
28 lines (26 loc) • 519 B
text/typescript
import gql from "graphql-tag";
export const VALIDATE_OPERATIONS = gql`
mutation ValidateOperations(
$id: ID!
$operations: [OperationDocumentInput!]!
$tag: String
$gitContext: GitContextInput
) {
service(id: $id) {
validateOperations(
tag: $tag
operations: $operations
gitContext: $gitContext
) {
validationResults {
type
code
description
operation {
name
}
}
}
}
}
`;