UNPKG

@graphql-tools/utils

Version:

Common package containing utils and types for GraphQL tools

29 lines (28 loc) 1.18 kB
import { Kind, valueFromASTUntyped, } from 'graphql'; function isTypeWithFields(t) { return t.kind === Kind.OBJECT_TYPE_DEFINITION || t.kind === Kind.OBJECT_TYPE_EXTENSION; } export function getArgumentsWithDirectives(documentNode) { const result = {}; const allTypes = documentNode.definitions.filter(isTypeWithFields); for (const type of allTypes) { if (type.fields == null) { continue; } for (const field of type.fields) { const argsWithDirectives = field.arguments?.filter(arg => arg.directives?.length); if (!argsWithDirectives?.length) { continue; } const typeFieldResult = (result[`${type.name.value}.${field.name.value}`] = {}); for (const arg of argsWithDirectives) { const directives = arg.directives.map(d => ({ name: d.name.value, args: (d.arguments || []).reduce((prev, dArg) => ({ ...prev, [dArg.name.value]: valueFromASTUntyped(dArg.value) }), {}), })); typeFieldResult[arg.name.value] = directives; } } } return result; }