Is it possible to list issues across an organisation? #122172
Replies: 3 comments 1 reply
-
|
I'm not seeing anything via the UI. But I played around with GitHub's GraphQL explorer and got a little bit closer. I targeted the "github" organization, fetched the first 100 repositories, and the first 100 issues within them. There are rate limits so this might help you on smaller organizations, but something as large as GitHub would require a several queries. query {
organization(login: "github") {
repositories(first: 100) {
nodes {
name
issues(first: 100) {
nodes {
title
}
}
}
}
}
} |
Beta Was this translation helpful? Give feedback.
-
|
🕒 Discussion Activity Reminder 🕒 This Discussion has been labeled as dormant by an automated system for having no activity in the last 60 days. Please consider one the following actions: 1️⃣ Close as Out of Date: If the topic is no longer relevant, close the Discussion as 2️⃣ Provide More Information: Share additional details or context — or let the community know if you've found a solution on your own. 3️⃣ Mark a Reply as Answer: If your question has been answered by a reply, mark the most helpful reply as the solution. Note: This dormant notification will only apply to Discussions with the Thank you for helping bring this Discussion to a resolution! 💬 |
Beta Was this translation helpful? Give feedback.
-
|
This should not be closed as it got no actual answers . Here is how I solved for the adventure game studio organization. I believe there should be a better ui for it - essentially the actual issues ui that let’s you more easily see labels and such. https://github.com/search?o=desc&q=org%3Aadventuregamestudio&s=created&type=Issues |
Beta Was this translation helpful? Give feedback.

Uh oh!
There was an error while loading. Please reload this page.
-
Select Topic Area
Question
Feature Area
Issues
Body
Given a https://github.com/orgs/XXXX with a number of repositories and issues within, is there a way to view all issues to get a better overview?
Guidelines
Beta Was this translation helpful? Give feedback.
All reactions