Last active
April 18, 2019 17:58
-
-
Save motephyr/eb6edc88833a59db5bc470f802a7646a 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 Users{ | |
| users { | |
| id | |
| username | |
| posts { | |
| title | |
| description | |
| } | |
| } | |
| } | |
| //當你需要列出所有的文章包含作者時: | |
| query Posts{ | |
| posts { | |
| id | |
| title | |
| description | |
| user { | |
| id | |
| username | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment