UNPKG

openapi-to-graphql-nullable

Version:

Fork of openapi-to-graphql that fixes nullable handling. Published to NPM since there's no other easy way to consume a Lerna package. Unmaintained.

14 lines 739 B
"use strict"; // Copyright IBM Corp. 2018. All Rights Reserved. // Node module: openapi-to-graphql // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT Object.defineProperty(exports, "__esModule", { value: true }); exports.GraphQLOperationType = void 0; var GraphQLOperationType; (function (GraphQLOperationType) { GraphQLOperationType[GraphQLOperationType["Query"] = 0] = "Query"; GraphQLOperationType[GraphQLOperationType["Mutation"] = 1] = "Mutation"; GraphQLOperationType[GraphQLOperationType["Subscription"] = 2] = "Subscription"; })(GraphQLOperationType = exports.GraphQLOperationType || (exports.GraphQLOperationType = {})); //# sourceMappingURL=graphql.js.map