Skip to content

Instantly share code, notes, and snippets.

@motephyr
Last active April 18, 2019 17:58
Show Gist options
  • Select an option

  • Save motephyr/eb6edc88833a59db5bc470f802a7646a to your computer and use it in GitHub Desktop.

Select an option

Save motephyr/eb6edc88833a59db5bc470f802a7646a to your computer and use it in GitHub Desktop.
//當你需要依照作者列出個人所有的文章時:
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