@graphql-tools/utils
Version:
Common package containing utils and types for GraphQL tools
37 lines (36 loc) • 1.32 kB
JavaScript
import { createGraphQLError } from './errors.js';
import { memoize1 } from './memoize.js';
export function getDefinedRootType(schema, operation, nodes) {
const rootTypeMap = getRootTypeMap(schema);
const rootType = rootTypeMap.get(operation);
if (rootType == null) {
throw createGraphQLError(`Schema is not configured to execute ${operation} operation.`, {
nodes,
});
}
return rootType;
}
export const getRootTypeNames = memoize1(function getRootTypeNames(schema) {
const rootTypes = getRootTypes(schema);
return new Set([...rootTypes].map(type => type.name));
});
export const getRootTypes = memoize1(function getRootTypes(schema) {
const rootTypeMap = getRootTypeMap(schema);
return new Set(rootTypeMap.values());
});
export const getRootTypeMap = memoize1(function getRootTypeMap(schema) {
const rootTypeMap = new Map();
const queryType = schema.getQueryType();
if (queryType) {
rootTypeMap.set('query', queryType);
}
const mutationType = schema.getMutationType();
if (mutationType) {
rootTypeMap.set('mutation', mutationType);
}
const subscriptionType = schema.getSubscriptionType();
if (subscriptionType) {
rootTypeMap.set('subscription', subscriptionType);
}
return rootTypeMap;
});