1
0
mirror of synced 2025-12-23 21:07:12 -05:00

Fix unordered list indentation (#37391)

Co-authored-by: Matt Pollard <mattpollard@users.noreply.github.com>
Co-authored-by: Laura Coursen <lecoursen@github.com>
Co-authored-by: Felicity Chapman <felicitymay@github.com>
This commit is contained in:
Rachael Sewell
2023-06-06 15:07:29 -07:00
committed by GitHub
parent 159c27c74a
commit e9a894c8d6
99 changed files with 495 additions and 496 deletions

View File

@@ -340,9 +340,9 @@ With the ID known, we can proceed with the mutation:
* The rest of the call is composed of the payload object. This is where we specify the data we want the server to return after we've performed the mutation. These lines come from the [`addReaction` docs](/graphql/reference/mutations#addreaction), which three possible return fields:
- `clientMutationId` (`String`)
- `reaction` (`Reaction!`)
- `subject` (`Reactable!`)
- `clientMutationId` (`String`)
- `reaction` (`Reaction!`)
- `subject` (`Reactable!`)
In this example, we return the two required fields (`reaction` and `subject`), both of which have required subfields (respectively, `content` and `id`).

View File

@@ -41,9 +41,9 @@ For a list of the fields available with the Enterprise Accounts API, see "[AUTOT
## Getting started using GraphQL for enterprise accounts
Follow these steps to get started using GraphQL to manage your enterprise accounts:
- Authenticating with a {% data variables.product.pat_generic %}
- Choosing a GraphQL client or using the GraphQL Explorer
- Setting up Insomnia to use the GraphQL API
- Authenticating with a {% data variables.product.pat_generic %}
- Choosing a GraphQL client or using the GraphQL Explorer
- Setting up Insomnia to use the GraphQL API
For some example queries, see "[An example query using the Enterprise Accounts API](#an-example-query-using-the-enterprise-accounts-api)."
@@ -70,9 +70,9 @@ For some example queries, see "[An example query using the Enterprise Accounts A
We recommend you use GraphiQL or another standalone GraphQL client that lets you configure the base URL.
You may also consider using these GraphQL clients:
- [Insomnia](https://support.insomnia.rest/article/176-graphql-queries)
- [GraphiQL](https://www.gatsbyjs.org/docs/running-queries-with-graphiql/)
- [Postman](https://learning.getpostman.com/docs/postman/sending_api_requests/graphql/)
- [Insomnia](https://support.insomnia.rest/article/176-graphql-queries)
- [GraphiQL](https://www.gatsbyjs.org/docs/running-queries-with-graphiql/)
- [Postman](https://learning.getpostman.com/docs/postman/sending_api_requests/graphql/)
The next steps will use Insomnia.