UNPKG

864 BJavaScriptView Raw
1"use strict";
2var __importDefault = (this && this.__importDefault) || function (mod) {
3 return (mod && mod.__esModule) ? mod : { "default": mod };
4};
5Object.defineProperty(exports, "__esModule", { value: true });
6exports.VALIDATE_OPERATIONS = void 0;
7const graphql_tag_1 = __importDefault(require("graphql-tag"));
8exports.VALIDATE_OPERATIONS = graphql_tag_1.default `
9 mutation ValidateOperations(
10 $id: ID!
11 $operations: [OperationDocumentInput!]!
12 $tag: String
13 $gitContext: GitContextInput
14 ) {
15 service(id: $id) {
16 validateOperations(
17 tag: $tag
18 operations: $operations
19 gitContext: $gitContext
20 ) {
21 validationResults {
22 type
23 code
24 description
25 operation {
26 name
27 }
28 }
29 }
30 }
31 }
32`;
33//# sourceMappingURL=validateOperations.js.map
\No newline at end of file