Created
September 16, 2021 21:43
-
-
Save jasonbahl/843ffcffc08dfefdd7748d1ed246c042 to your computer and use it in GitHub Desktop.
Query for posts, authors and terms
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
| { | |
| posts { | |
| nodes { | |
| id | |
| title | |
| author { | |
| node { | |
| id | |
| firstName | |
| avatar { | |
| url | |
| } | |
| } | |
| } | |
| categories { | |
| nodes { | |
| id | |
| name | |
| } | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment