Skip to content

Commit 2aafbbd

Browse files
committed
PCX-1086 Minor copy edits
1 parent 7089045 commit 2aafbbd

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

products/analytics/src/content/graphql-api/getting-started/explore-graphql-schema.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ title: Explore the GraphQL schema
33
order: 40
44
---
55

6-
# Explore the GraphQL schema in the GraphiQL client
6+
# Explore the GraphQL schema
77

88
One of the great features of a GraphQL API is that it offers "introspection"—you can explore the graph (by making API calls) to see the available data sets, the fields and their types, and the operations you can perform.
99

10-
_GraphiQL_ uses this functionality to provide a "Documentation Explorer" that you can use to understand the schema. Click on the _Docs_ link on the right-hand side and then drill down starting with `query` and proceeding to `viewer` and then `zone`. Introspection is also used to provide query auto-complete and syntax validation.
10+
_GraphiQL_ uses this functionality to provide a "Documentation Explorer" that you can use to understand the schema. Click on the **Docs** link on the right-hand side and then drill down, starting with `query` and proceeding to `viewer` and then `zone`. GraphiQL also uses introspection to provide query auto-complete and syntax validation.
1111

12-
You can explore the schema of the Coudflare GraphQL endpoint in the the GraphQL client. The examples below use the GraphiQL client.
12+
You can explore the schema of the Coudflare GraphQL endpoint in a GraphQL client. The examples below use the GraphiQL client.
1313

1414
Before you begin, configure the API endpoint and HTTP headers in the GraphQL client.
1515

@@ -33,9 +33,9 @@ In this example `query` is the name of the node, and `Query` is the type definit
3333

3434
## Find the fields available for a given type definition
3535

36-
Click on the _type definition_ of a node to view the fields that it provides. The **Documentation Explorer** pane also displays descriptions of the nodes.
36+
Click on the **type definition** of a node to view the fields that it provides. The **Documentation Explorer** pane also displays descriptions of the nodes.
3737

38-
Click the Query type definition. The **Documentation Explorer** panel displays the fields that the `query` node provides. In this example, the fields are `cost` and `viewer`.
38+
Click the `Query` type definition. The **Documentation Explorer** panel displays the fields that the `query` node provides. In this example, the fields are `cost` and `viewer`.
3939

4040
![Cost and viewer fields](../../static/images/docs-viewer.png)
4141

@@ -45,9 +45,9 @@ Click on the type definition of the `viewer` field to list its sub-fields. The `
4545

4646
![viewer fields](../../static/images/docs-zone-filter.png)
4747

48-
The `accounts` and `zones` fields take arguments to specify what data set to query.
48+
The `accounts` and `zones` fields take arguments to specify which data set to query.
4949

50-
For the `zones` node you can provide a filter of ZoneFilter_InputObject type. To view the fields to specify in the filter, click **ZoneFilter_InputObject**.
50+
For the `zones` node you can provide a filter of `ZoneFilter_InputObject` type. To view the fields available to filter, click **ZoneFilter_InputObject**.
5151

5252
To limit the amount of search results that the query returns, click the **limit** argument.
5353

0 commit comments

Comments
 (0)