UNPKG

782 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.UPLOAD_SCHEMA = void 0;
7const graphql_tag_1 = __importDefault(require("graphql-tag"));
8exports.UPLOAD_SCHEMA = graphql_tag_1.default `
9 mutation UploadSchema(
10 $id: ID!
11 $schema: IntrospectionSchemaInput!
12 $tag: String!
13 $gitContext: GitContextInput
14 ) {
15 service(id: $id) {
16 uploadSchema(schema: $schema, tag: $tag, gitContext: $gitContext) {
17 code
18 message
19 success
20 tag {
21 tag
22 schema {
23 hash
24 }
25 }
26 }
27 }
28 }
29`;
30//# sourceMappingURL=uploadSchema.js.map
\No newline at end of file