Skip to content

Instantly share code, notes, and snippets.

@SvanBoxel
Created August 13, 2020 14:56
Show Gist options
  • Save SvanBoxel/3ddcaeb4fc469122dd0e702aa94ae48e to your computer and use it in GitHub Desktop.
Save SvanBoxel/3ddcaeb4fc469122dd0e702aa94ae48e to your computer and use it in GitHub Desktop.
get team membership graphql query
query($org:String!) {
organization(login: $org) {
teams(first: 100) {
edges {
node {
name
members(first: 100) {
nodes {
id
login
email
}
}
}
}
}
}
}
@SvanBoxel
Copy link
Author

SvanBoxel commented Aug 13, 2020

{
	"org": "your-org"
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment