Skip to content

Instantly share code, notes, and snippets.

@categulario
Created November 1, 2018 17:47
Show Gist options
  • Save categulario/b303d5d505fcaeebc91cbfe68fa9da01 to your computer and use it in GitHub Desktop.
Save categulario/b303d5d505fcaeebc91cbfe68fa9da01 to your computer and use it in GitHub Desktop.
People you have collaborated with; Personas con las que has colaborado
# Type queries into this side of the screen, and you will
# see intelligent typeaheads aware of the current GraphQL type schema,
# live syntax, and validation errors highlighted within the text.
# We'll get you started with a simple query showing your username!
query {
viewer {
repositories(first:100, ownerAffiliations:[OWNER]) {
nodes {
name
assignableUsers(first:100) {
nodes {
login
avatarUrl(size: 48)
}
}
}
totalCount
}
repositoriesContributedTo(contributionTypes:[COMMIT, REPOSITORY], first:100) {
nodes {
name
assignableUsers(first:100) {
nodes {
login
avatarUrl(size: 48)
}
}
}
totalCount
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment