From d8cbb2ab7238865ce71e39a09e21ee9f94b55c44 Mon Sep 17 00:00:00 2001 From: Jesse Schalken Date: Sat, 2 Dec 2017 16:40:48 +1100 Subject: [PATCH] Fix string used as value for Episode enum --- site/learn/Learn-Queries.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/learn/Learn-Queries.md b/site/learn/Learn-Queries.md index 15ac8422f8..f60d162204 100644 --- a/site/learn/Learn-Queries.md +++ b/site/learn/Learn-Queries.md @@ -197,7 +197,7 @@ To learn more about the syntax for these variable definitions, it's useful to le Default values can also be assigned to the variables in the query by adding the default value after the type declaration. ```graphql -query HeroNameAndFriends($episode: Episode = "JEDI") { +query HeroNameAndFriends($episode: Episode = JEDI) { hero(episode: $episode) { name friends {