Skip to content

Instantly share code, notes, and snippets.

@gengjiawen
Last active November 20, 2018 14:06
Show Gist options
  • Save gengjiawen/24c0b038abe23264758e9997c3a887a3 to your computer and use it in GitHub Desktop.
Save gengjiawen/24c0b038abe23264758e9997c3a887a3 to your computer and use it in GitHub Desktop.
github graphql showcase

https://developer.github.com/v4/explorer/

{
  repository(owner: "nodejs", name: "node") {
    pullRequests(first: 10, states: [OPEN], orderBy: {field: CREATED_AT, direction: DESC}) {
      nodes {
        title
        url
        mergeable
        author {
          url
        }
      }
    }
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment