UNPKG

@graphql-tools/code-file-loader

Version:

A set of utils for faster development of GraphQL tools

39 lines (38 loc) 675 B
/** * @internal */ export function pick(obj, keys) { for (const key of keys) { if (obj[key]) { return obj[key]; } } return obj; } // checkers /** * @internal */ export function isSchemaText(obj) { return typeof obj === 'string'; } /** * @internal */ export function isWrappedSchemaJson(obj) { const json = obj; return json.data !== undefined && json.data.__schema !== undefined; } /** * @internal */ export function isSchemaJson(obj) { const json = obj; return json !== undefined && json.__schema !== undefined; } /** * @internal */ export function isSchemaAst(obj) { return obj.kind !== undefined; }