UNPKG

graphql

Version:

A Query Language and Runtime which can target any service.

54 lines (41 loc) 1.42 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getOperationRootType = getOperationRootType; var _GraphQLError = require("../error/GraphQLError"); /** * Copyright (c) 2015-present, Facebook, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * strict */ /** * Extracts the root type of the operation from the schema. */ function getOperationRootType(schema, operation) { switch (operation.operation) { case 'query': var queryType = schema.getQueryType(); if (!queryType) { throw new _GraphQLError.GraphQLError('Schema does not define the required query root type.', [operation]); } return queryType; case 'mutation': var mutationType = schema.getMutationType(); if (!mutationType) { throw new _GraphQLError.GraphQLError('Schema is not configured for mutations.', [operation]); } return mutationType; case 'subscription': var subscriptionType = schema.getSubscriptionType(); if (!subscriptionType) { throw new _GraphQLError.GraphQLError('Schema is not configured for subscriptions.', [operation]); } return subscriptionType; default: throw new _GraphQLError.GraphQLError('Can only have query, mutation and subscription operations.', [operation]); } }