Skip to content

Commit b9ce44b

Browse files
authored
Update graphql-api.mdx
1 parent 37e1e22 commit b9ce44b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

website/pages/en/querying/graphql-api.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ To understand the larger role that GraphQL plays, review [developing](/network/d
1212

1313
## Queries with GraphQL
1414

15-
In your subgraph schema you define types called `Entities`. For each `Entity` type, an `entity` and `entities` fields will be generated on the top-level `Query` type.
15+
In your subgraph schema you define types called `Entities`. For each `Entity` type, `entity` and `entities` fields will be generated on the top-level `Query` type.
1616

1717
> Note: `query` does not need to be included at the top of the `graphql` query when using The Graph.
1818
@@ -389,7 +389,7 @@ Graph Node implements [specification-based](https://spec.graphql.org/October2021
389389

390390
## Schema
391391

392-
The schema of your `data source`, i.e. the entity types, values, and relationships that are available to query, are defined through the [GraphQL Interface Definition Langauge (IDL)](https://facebook.github.io/graphql/draft/#sec-Type-System).
392+
The schema of your dataSources, i.e. the entity types, values, and relationships that are available to query, are defined through the [GraphQL Interface Definition Langauge (IDL)](https://facebook.github.io/graphql/draft/#sec-Type-System).
393393

394394
GraphQL schemas generally define root types for `queries`, `subscriptions` and `mutations`. The Graph only supports `queries`. The root `Query` type for your subgraph is automatically generated from the GraphQL schema that's included in your [subgraph manifest](/developing/creating-a-subgraph/#components-of-a-subgraph).
395395

0 commit comments

Comments
 (0)