Skip to content

Commit 47b2194

Browse files
authored
Merge pull request #37553 from github/repo-sync
Repo sync
2 parents c5656a6 + d4cc8cd commit 47b2194

File tree

6 files changed

+1966
-79
lines changed

6 files changed

+1966
-79
lines changed

content/issues/tracking-your-work-with-issues/using-issues/filtering-and-searching-issues-and-pull-requests.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,10 @@ You can build advanced filters using boolean and nested queries on your reposito
7777

7878
You can use `AND` and `OR` operators to refine your filters.
7979

80-
Use `AND` when you need results where both statements are true. In the example filter below, the results will be comprised of issues with the "Bug fix" label that are assigned to the @octocat user.
80+
Use `AND` when you need results where both statements are true. In the example filter below, the results will be comprised of issues with the "question" label that are assigned to the @octocat user.
8181

8282
```text
83-
label:"Bug fix" AND assignee:octocat
83+
label:"question" AND assignee:octocat
8484
```
8585

8686
To return results where either statement is true, use `OR`. In the example below, the results will contain issues assigned to either @octocat or @hubot.
@@ -93,10 +93,10 @@ If you choose not to use `AND` and `OR` operators, {% data variables.product.git
9393

9494
### Using parentheses for more complicated filters
9595

96-
You can also use parentheses to nest filters and group qualifiers. In the example below, the results will contain issues that are either assigned to @octocat with the "bug" issue type or assigned to @hubot with the "Enhancement" issue type.
96+
You can also use parentheses to nest filters and group qualifiers. In the example below, the results will contain issues that are either assigned to @octocat with the "bug" issue type or assigned to @hubot with the "Feature" issue type.
9797

9898
```text
99-
(type:"Bug" AND assignee:octocat) OR (type:"Enhancement" AND assignee:hubot)
99+
(type:"Bug" AND assignee:octocat) OR (type:"Feature" AND assignee:hubot)
100100
```
101101

102102
You can nest filters using parentheses up to five levels deep.{% ifversion ghes < 3.18 %} It's not currently possible to include the `repo`, `org`, or `user` qualifiers within parentheses.{% endif %}
@@ -224,7 +224,8 @@ For issues, you can also use search to:
224224

225225
* Filter for issues that are linked to a pull request by a closing reference: `linked:pr`
226226
* Filter issues by the reason they were closed: `is:closed reason:completed` or `is:closed reason:"not planned"`
227-
{% ifversion issue-types %}* Filter for issues with a particular type: `is:open type:"Bug"`{% endif %}
227+
{% ifversion issue-types %}* Filter for issues with a particular type: `is:open type:"Bug"`{% endif %}{% ifversion issues-advanced-search %}
228+
* Filter for issues from repositories [**owned**](/search-github/searching-on-github/searching-issues-and-pull-requests#search-within-a-users-or-organizations-repositories) by a certain user or organization, limited to up to 16 `user` and `org` qualifiers with no limit on `repo` qualifiers: `state:open type:issue org:github OR user:octocat`{% endif %}
228229

229230
For pull requests, you can also use search to:
230231

src/graphql/data/fpt/changelog.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,30 @@
11
[
2+
{
3+
"schemaChanges": [
4+
{
5+
"title": "The GraphQL schema includes these changes:",
6+
"changes": [
7+
"<p>Type <code>ActorConnection</code> was added</p>",
8+
"<p>Type <code>ActorEdge</code> was added</p>",
9+
"<p>Type <code>AssigneeConnection</code> was added</p>",
10+
"<p>Type <code>AssigneeEdge</code> was added</p>",
11+
"<p>Type <code>ReplaceActorsForAssignableInput</code> was added</p>",
12+
"<p>Type <code>ReplaceActorsForAssignablePayload</code> was added</p>",
13+
"<p>Field <code>assignedActors</code> was added to interface <code>Assignable</code></p>",
14+
"<p>Field <code>suggestedActors</code> was added to interface <code>Assignable</code></p>",
15+
"<p>Field <code>assignedActors</code> was added to object type <code>Issue</code></p>",
16+
"<p>Field <code>suggestedActors</code> was added to object type <code>Issue</code></p>",
17+
"<p>Field <code>replaceActorsForAssignable</code> was added to object type <code>Mutation</code></p>",
18+
"<p>Field <code>assignedActors</code> was added to object type <code>PullRequest</code></p>",
19+
"<p>Field <code>suggestedActors</code> was added to object type <code>PullRequest</code></p>",
20+
"<p>Field <code>suggestedActors</code> was added to object type <code>Repository</code></p>"
21+
]
22+
}
23+
],
24+
"previewChanges": [],
25+
"upcomingChanges": [],
26+
"date": "2025-04-15"
27+
},
228
{
329
"schemaChanges": [
430
{

0 commit comments

Comments
 (0)