Socket
Socket
Sign inDemoInstall

simple-graphql

Package Overview
Dependencies
Maintainers
1
Versions
300
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

simple-graphql - npm Package Compare versions

Comparing version 1.0.8 to 1.0.9

2

lib/package.json
{
"name": "simple-graphql",
"version": "1.0.8",
"version": "1.0.9",
"description": "The simple way to generates GraphQL schemas and Sequelize models from your models definition.",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

@@ -208,4 +208,3 @@ 'use strict';

if (fieldType['resolve']) {
result['resolve'] = context.wrapFieldResolve({
config: fieldType['config'],
var wrapConfig = {
name: name.split('.').slice(-1)[0],

@@ -215,3 +214,7 @@ path: name,

resolve: fieldType['resolve']
});
};
if (fieldType['config']) {
wrapConfig['config'] = fieldType['config'];
}
result['resolve'] = context.wrapFieldResolve(wrapConfig);
}

@@ -218,0 +221,0 @@ if (fieldType.args || result.args) {

{
"name": "simple-graphql",
"version": "1.0.8",
"version": "1.0.9",
"description": "The simple way to generates GraphQL schemas and Sequelize models from your models definition.",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc