Created
February 18, 2020 22:49
-
-
Save ummdorian/ed7e83b1d09e2fbf57ebbc53280fb59e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
query { | |
nodeQuery( | |
filter: { | |
conditions: [ | |
{ | |
operator: EQUAL, | |
field: "type", | |
value: ["default_data"] | |
} | |
] | |
} | |
) | |
{ | |
entities { | |
... on NodeDefaultData{ | |
fieldDefaultDataSeason { | |
entity{ | |
entityLabel | |
} | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment