Skip to content

Commit f107c32

Browse files
authored
Merge pull request #41218 from github/repo-sync
Repo sync
2 parents ae25d1c + aa87852 commit f107c32

File tree

14 files changed

+10
-133
lines changed

14 files changed

+10
-133
lines changed

content/graphql/guides/forming-calls-with-graphql.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -112,9 +112,6 @@ For a real-world example, see [Example mutation](#example-mutation).
112112

113113
[Variables](https://graphql.org/learn/queries/#variables) can make queries more dynamic and powerful, and they can reduce complexity when passing mutation input objects.
114114

115-
> [!NOTE]
116-
> If you're using the Explorer, make sure to enter variables in the separate [Query Variables pane](/graphql/guides/using-the-explorer#using-the-variable-pane), and do not include the word `variables` before the JSON object.
117-
118115
Here's an example query with a single variable:
119116

120117
```graphql
@@ -269,9 +266,6 @@ mutation AddReactionToIssue {
269266
}
270267
```
271268

272-
> [!TIP]
273-
> Although you can include a query and a mutation in the same Explorer window if you give them names (`FindIssueID` and `AddReactionToIssue` in this example), the operations will be executed as separate calls to the GraphQL endpoint. It's not possible to perform a query at the same time as a mutation, or vice versa.
274-
275269
Let's walk through the example. The task sounds simple: add an emoji reaction to an issue.
276270

277271
So how do we know to begin with a query? We don't, yet.
@@ -294,7 +288,7 @@ Let's examine the query line by line:
294288

295289
* `query FindIssueID {`
296290

297-
Here we're performing a query, and we name it `FindIssueID`. Note that naming a query is optional; we give it a name here so that we can include it in same Explorer window as the mutation.
291+
Here we're performing a query, and we name it `FindIssueID`. Note that naming a query is optional; we give it a name here so that we can include it in same GUI client window as the mutation.
298292

299293
* `repository(owner:"octocat", name:"Hello-World") {`
300294

@@ -317,7 +311,7 @@ With the ID known, we can proceed with the mutation:
317311

318312
* `mutation AddReactionToIssue {`
319313

320-
Here we're performing a mutation, and we name it `AddReactionToIssue`. As with queries, naming a mutation is optional; we give it a name here so we can include it in the same Explorer window as the query.
314+
Here we're performing a mutation, and we name it `AddReactionToIssue`. As with queries, naming a mutation is optional; we give it a name here so we can include it in the same GUI client window as the query.
321315

322316
* `addReaction(input:{subjectId:"MDU6SXNzdWUyMzEzOTE1NTE=",content:HOORAY}) {`
323317

content/graphql/guides/using-graphql-clients.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ intro: 'You can run queries on real {% data variables.product.prodname_dotcom %}
44
redirect_from:
55
- /v4/guides/using-the-explorer
66
- /graphql/guides/using-the-explorer
7+
- /graphql/overview/explorer
78
versions:
89
fpt: '*'
910
ghec: '*'
@@ -12,6 +13,10 @@ topics:
1213
- API
1314
---
1415

16+
17+
> [!WARNING]
18+
> The GraphQL Explorer was removed from the documentation on November 11, 2025. See our [changelog announcement](https://github.blog/changelog/2025-11-07-graphql-explorer-removal-from-api-documentation-on-november-7-2025).
19+
1520
## Using GraphQL client IDEs
1621

1722
There are many open-source GraphQL client IDEs you can use to access {% data variables.product.company_short %}'s GraphQL API.

content/graphql/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ featuredLinks:
1010
- /graphql/guides/introduction-to-graphql
1111
- /graphql/guides/using-graphql-clients
1212
popular:
13-
- /graphql/overview/explorer
1413
- /graphql/overview/public-schema
1514
- /graphql/guides/using-pagination-in-the-graphql-api
1615
guideCards:

content/graphql/overview/about-the-graphql-api.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,6 @@ The docs in the sidebar are generated from the {% data variables.product.prodnam
4949

5050
* Schema-defined types: [scalars](/graphql/reference/scalars), [objects](/graphql/reference/objects), [enums](/graphql/reference/enums), [interfaces](/graphql/reference/interfaces), [unions](/graphql/reference/unions), and [input objects](/graphql/reference/input-objects).
5151

52-
You can access this same content via the [Explorer Docs sidebar](/graphql/guides/using-the-explorer#accessing-the-sidebar-docs). Note that you may need to rely on both the docs and the schema validation to successfully call the GraphQL API.
53-
5452
For other information, such as authentication and rate limit details, check out the [guides](/graphql/guides).
5553

5654
## Requesting support

content/graphql/overview/explorer.md

Lines changed: 0 additions & 34 deletions
This file was deleted.

content/graphql/overview/index.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Overview
3-
intro: 'Learn about the {% data variables.product.prodname_dotcom %} GraphQL API, previews for upcoming changes, breaking changes, and limitations. You can also use the GraphQL Explorer to interact with the API on real {% data variables.product.prodname_dotcom %} data.'
3+
intro: 'Learn about the {% data variables.product.prodname_dotcom %} GraphQL API, previews for upcoming changes, breaking changes, and limitations.'
44
versions:
55
fpt: '*'
66
ghec: '*'
@@ -10,7 +10,6 @@ children:
1010
- /public-schema
1111
- /breaking-changes
1212
- /changelog
13-
- /explorer
1413
- /rate-limits-and-query-limits-for-the-graphql-api
1514
---
1615

content/organizations/managing-saml-single-sign-on-for-your-organization/troubleshooting-identity-and-access-management-for-your-organization.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ curl -X POST -H "Authorization: Bearer YOUR_TOKEN" -H "Content-Type: application
8686

8787
For more information on using the GraphQL API, see:
8888
* [AUTOTITLE](/graphql/guides)
89-
* [AUTOTITLE](/graphql/overview/explorer)
9089

9190
### Re-provisioning SCIM for users through your identity provider
9291

src/graphql/pages/explorer.module.scss

Lines changed: 0 additions & 3 deletions
This file was deleted.

src/graphql/pages/explorer.tsx

Lines changed: 0 additions & 69 deletions
This file was deleted.

src/pages/[versionId]/graphql/overview/explorer.tsx

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)