graphql-fields
Advanced tools
Comparing version
@@ -48,5 +48,6 @@ 'use strict'; | ||
obj = obj || {}; | ||
return info.fieldASTs.reduce((o, ast) => { | ||
const fields = info.fieldNodes || info.fieldASTs; | ||
return fields.reduce((o, ast) => { | ||
return flattenAST(ast, info, o); | ||
}, obj) || {}; | ||
}; |
{ | ||
"name": "graphql-fields", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "Turns GraphQLResolveInfo into a map of the requested fields", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -108,4 +108,4 @@ # graphql-fields | ||
resolve(root, args, context, info) { | ||
const topLevelFields = Object.keys(graphqlFields(info}) | ||
return fetch(`/api/user?fields=${topLevelFields.join(',}`); | ||
const topLevelFields = Object.keys(graphqlFields(info)); | ||
return fetch(`/api/user?fields=${topLevelFields.join(',')}`); | ||
} | ||
@@ -112,0 +112,0 @@ ``` |
13236
0.37%211
0.48%