New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

graphql-fields

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

graphql-fields - npm Package Compare versions

Comparing version

to
1.0.2

3

index.js

@@ -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 @@ ```