Github graphql – memebersWithRoles does not return all members on organization

Github graphql – memebersWithRoles does not return all members on organization


0

Using graphQL for github, I cannot get the full set of members in an organization.

Using this GraphQL I get 45 users:
query
{node(id: "#@#@#$@#$##$#@") { … on Organization {
membersWithRole (first: 100) { totalCount nodes { login id name createdAt, updatedAt}
}}}}

and same with this one:

organization(login: "OrgName") {
membersWithRole(first:100) {
totalCount
nodes {
name
login
}
}
}
}

But when I go to People on the org, I see 54 users. How can I get all users/members in an org.
By the way, a few of the users that do not show up as memebersWithRoles, are working fine and pushing/pulling all day long.

The Organization is not public.

New contributor

user212177 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.


Load 3 more related questions


Show fewer related questions

0



Leave a Reply

Your email address will not be published. Required fields are marked *