For GraphQL, you can use the ISSUE_ADVANCED type. Check out the GraphQL documentation for more details.
query {
search(query: "is:issue AND assignee:@me AND (label:support OR comments:>5)", type: ISSUE_ADVANCED, first: 10) {
nodes {
... on Node {
id
}
}
issueCount
}
}
Note that on September 4, 2025, all issue queries will use advanced search by default. This means that after this date:
You will no longer need to use the advanced_search parameter for the REST API.
The ISSUE GraphQL type will support advanced search.
🕐 Timeline events for issue types
You can now see events in the issue timeline when issue types are added, updated, and removed from an issue.
🌇 Issue types for private repositories only will be retired
We are retiring the “Private repositories only” setting for issue types. Over the next week, you will no longer be allowed select this setting to specify an issue type for use only in private repositories, and all existing issue types with this setting selected will be removed on March 26, 2025.
In order to continue using these issue types, you will need to unselect the “Private repositories only” setting in the issue types organization settings page before this date. They can then be edited, disabled, or deleted as needed.
If you’re a Copilot Business or Enterprise user, your administrator first needs to enable this model for your organization by opting in to Editor preview features in the Copilot policy settings on github.com.
Personal instructions are now generally available for Copilot Chat on github.com! This means you can provide Copilot with important details about your preferences, such as your preferred language, response style, or even code standards.
To get started, open up Copilot Chat, click ..., and select Personal instructions. That’s it! Copilot will now incorporate your preferences for all chats in github.com.
💡 Looking for ideas? Here are some examples to kick things off:
Frameworks: “Use Vue 3 with the composition API.”
Language: “Always respond in Portuguese.”
Response preferences: “Each message should communicate a singular idea. That idea should be limited to ONE codeblock or paragraph.”
Code style and best practices: “Optimize code for readability and performance. Utilize SOLID principles.”