UNPKG

@graphql-mesh/transport-rest

Version:
16 lines (15 loc) 401 B
export function processDictionaryDirective(fieldMap, field) { field.resolve = function dictionaryDirectiveHandler(root) { const result = []; for (const key in root) { if (key in fieldMap) { continue; } result.push({ key, value: root[key], }); } return result; }; }