Skip to content

Commit

Permalink
Update relay.js (mickhansen#636)
Browse files Browse the repository at this point in the history
fixed missing property because the function of lodash don't support the symbol key
  • Loading branch information
flybluewolf authored and mickhansen committed Nov 2, 2018
1 parent 9ef1434 commit b036ef3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/relay.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ export function createConnectionResolver({

_.each(args, (value, key) => {
if (ignoreArgs && key in ignoreArgs) return;
_.assign(result, where(key, value, result));
Object.assign(result, where(key, value, result));
});

return result;
Expand Down

0 comments on commit b036ef3

Please sign in to comment.