Created
August 13, 2020 14:56
-
-
Save SvanBoxel/3ddcaeb4fc469122dd0e702aa94ae48e to your computer and use it in GitHub Desktop.
get team membership graphql query
This file contains 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
query($org:String!) { | |
organization(login: $org) { | |
teams(first: 100) { | |
edges { | |
node { | |
name | |
members(first: 100) { | |
nodes { | |
id | |
login | |
} | |
} | |
} | |
} | |
} | |
} | |
} |
Author
SvanBoxel
commented
Aug 13, 2020
•
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment