From 5c6e700f630d0741979691ec41f85a53fa68ab8e Mon Sep 17 00:00:00 2001 From: Lee Byron Date: Thu, 16 Jul 2015 01:42:24 -0700 Subject: [PATCH] clarify list and non_null in input types --- Section 5 -- Validation.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Section 5 -- Validation.md b/Section 5 -- Validation.md index 08bbc011f..caf709e5d 100644 --- a/Section 5 -- Validation.md +++ b/Section 5 -- Validation.md @@ -942,6 +942,8 @@ query intToFloatQuery($floatVar: Float = 1) { * For every {operation} in a {document} * For every {variable} on each {operation} * Let {variableType} be the type of {variable} + * While {variableType} is {LIST} or {NON_NULL} + * Let {variableType} be the referenced type of {variableType} * {variableType} must of kind {SCALAR}, {ENUM} or {INPUT_OBJECT} ** Explanatory Text **