From 2b22c2c437a74460d421c1803f2636d1a41cddc6 Mon Sep 17 00:00:00 2001 From: Kyle Mathews Date: Fri, 19 Jan 2018 08:05:59 -0800 Subject: [PATCH] Update comment --- packages/gatsby/src/schema/infer-graphql-input-fields.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/gatsby/src/schema/infer-graphql-input-fields.js b/packages/gatsby/src/schema/infer-graphql-input-fields.js index df3f7d381e464..29bde30b78a55 100644 --- a/packages/gatsby/src/schema/infer-graphql-input-fields.js +++ b/packages/gatsby/src/schema/infer-graphql-input-fields.js @@ -203,7 +203,7 @@ export function inferInputObjectStructureFromNodes({ // setting traversing up not try to automatically infer them. if (isRoot && EXCLUDE_KEYS[key]) return - // Input arguments on linked fields aren't currently supported + // Infer input arguments for linked nodes if (_.includes(key, `___NODE`)) { value = findLinkedNode(value) ;[key] = key.split(`___`)