Created
November 1, 2018 17:47
-
-
Save categulario/b303d5d505fcaeebc91cbfe68fa9da01 to your computer and use it in GitHub Desktop.
People you have collaborated with; Personas con las que has colaborado
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
# 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