Socket
Socket
Sign inDemoInstall

@alugha/graphql-field-arguments-coercion

Package Overview
Dependencies
1
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.3 to 1.0.4

10

lib/values.js

@@ -70,4 +70,5 @@ "use strict";

argValue = values[name];
if (argValue == null)
return [2 /*return*/];
if (argValue == null) {
return [2 /*return*/, argValue];
}
return [4 /*yield*/, coerceArgumentValue(argDef, argValue, context, utils_1.addPath(undefined, name), fieldResolveInfo, onError)];

@@ -101,4 +102,5 @@ case 1:

value = values[name];
if (value == null)
return [2 /*return*/];
if (value == null) {
return [2 /*return*/, value];
}
_c.label = 1;

@@ -105,0 +107,0 @@ case 1:

2

package.json
{
"name": "@alugha/graphql-field-arguments-coercion",
"version": "1.0.3",
"version": "1.0.4",
"description": "Implementation of the support of coerce function on GraphQL Input types",

@@ -5,0 +5,0 @@ "homepage": "https://github.com/alexstrat/graphql-field-arguments-coercion",

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc