Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save StanleyGoldman/516de219eea0cae8fc8f746012ab4497 to your computer and use it in GitHub Desktop.
Save StanleyGoldman/516de219eea0cae8fc8f746012ab4497 to your computer and use it in GitHub Desktop.
Example GraphQL Query
{
search(query: "language:C#", first: 3, type: REPOSITORY) {
edges {
node {
... on Repository {
name
languages(first:3){
nodes{
name
}
}
owner {
... on User {
userName: name
userLogin: login
}
... on Organization {
organizationName: name
organizationLogin: login
}
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment