Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion site/learn/Learn-Queries.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down