Getting issues from a repo that have a "good first issue" label and are not having a linked PR. #62234
Replies: 2 comments 1 reply
This comment was marked as spam.
This comment was marked as spam.
|
🕒 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! 💬 |
Uh oh!
There was an error while loading. Please reload this page.
Select Topic Area
Question
Body
I'm making a website for which I need any repo's metadata that the user wants. I need to filter out issues from that repo which have a "good first issue" label and are not having a linked PR. So far, I am able to just filter between closed and open issues using the GitHub api, but I am not able to understand how I can filter out labels which are from what I understand JSON objects themselves on some repos.
Here's an example of
bitcoin/bitcoin/issues:the API lists some labels. These labels from what I understand are JSON objects themselves. Now, to search for an issue that has a
good first issuelabel in it (doesn't matter if it has other ones too), what should my query parameters be?All reactions