Skip to content

Q: How to use GraphQL to find only repositories owned by organizations? #24519

Discussion options

You must be logged in to vote

Hey @ranicki69,

Thanks for being here! Something like this should work:

{
  organization(login: "atom") {
      repositories(first: 50) {
        nodes {
          name
        }
        pageInfo {
          hasNextPage
        }
      }
    }
  }

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants