You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* explorer.mdx mistake: 'In the The Curators table'
* best-practices: fixed 'handled by the GraphQL server The GraphQL'
* best-practices: "Dos" is a simple plural (not possessive) - apostrophe removed
* best-practices: removed extra article
* querying-graph-client: sentence had extra words
* 'tools provided' are plural and then described as singular. It was written more like 'this repo' was the subject. Fixed.
* querying-graph-client: fixed comma misuse.
* querying-graph-client: cleaned a sentence up to read more efficiently.
* 'As long as there a no conflicts' changed to 'As long as there are no conflicts'
* 'has' becomes 'have' because 'client libraries like...' is pluralizing the subject.
* 'a' changed to 'an'
Copy file name to clipboardExpand all lines: website/src/pages/en/subgraphs/explorer.mdx
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -116,7 +116,7 @@ Curators analyze Subgraphs to identify which Subgraphs are of the highest qualit
116
116
- By depositing GRT, Curators mint curation shares of a Subgraph. As a result, they can earn a portion of the query fees generated by the Subgraph they have signaled on.
117
117
- The bonding curve incentivizes Curators to curate the highest quality data sources.
118
118
119
-
In the The Curator table listed below you can see:
Copy file name to clipboardExpand all lines: website/src/pages/en/subgraphs/querying/graph-client/README.md
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -4,15 +4,15 @@ This repo is the home for [The Graph](https://thegraph.com) consumer-side tools
4
4
5
5
## Background
6
6
7
-
The tools provided in this repo are intended to enrich and extend the DX, and add the additional layer required for dApps in order to implement distributed applications.
7
+
The tools provided in this repo are intended to enrich and extend the DX, and add the additional layer required for dApps to implement distributed applications.
8
8
9
9
Developers who consume data from [The Graph](https://thegraph.com) GraphQL API often need peripherals for making data consumption easier, and also tools that allow using multiple indexers at the same time.
10
10
11
11
## Features and Goals
12
12
13
13
This library is intended to simplify the network aspect of data consumption for dApps. The tools provided within this repository are intended to run at build time, in order to make execution faster and performant at runtime.
14
14
15
-
> The tools provided in this repo can be used as standalone, but you can also use it with any existing GraphQL Client!
15
+
> The tools provided in this repo can be used as standalones, but you can also use them with any existing GraphQL Client!
> Note: you need to run this with `yarn` prefix, or add that as a script in your `package.json`.
69
69
70
-
This should produce a ready-to-use standalone `execute` function, that you can use for running your application GraphQL operations, you should have an output similar to the following:
70
+
This should produce a ready-to-use standalone `execute` function that you can use for running your application GraphQL operations. You should have an output similar to the following:
71
71
72
72
```sh
73
73
GraphClient: Cleaning existing artifacts
@@ -80,7 +80,7 @@ GraphClient: Reading the configuration
80
80
🕸️: Done! => .graphclient
81
81
```
82
82
83
-
Now, the `.graphclient` artifact is generated for you, and you can import it directly from your code, and run your queries:
83
+
Now that the `.graphclient` artifact is generated for you, you can import it directly from your code, and run your queries:
As long as there a no conflicts across the composed schemas, you can compose it, and then run a single query to both Subgraphs:
452
+
As long as there are no conflicts across the composed schemas, you can compose it, and then run a single query to both Subgraphs:
453
453
454
454
```graphql
455
455
query myQuery {
@@ -482,7 +482,7 @@ For advanced use-cases with composition, please refer to the following resources
482
482
483
483
If your project is written in TypeScript, you can leverage the power of [`TypedDocumentNode`](https://the-guild.dev/blog/typed-document-node) and have a fully-typed GraphQL client experience.
484
484
485
-
The standalone mode of The GraphQL, and popular GraphQL client libraries like Apollo-Client and urql has built-in support for `TypedDocumentNode`!
485
+
The standalone mode of The GraphQL, and popular GraphQL client libraries like Apollo-Client and urql have built-in support for `TypedDocumentNode`!
486
486
487
487
The Graph Client CLI comes with a ready-to-use configuration for [GraphQL Code Generator](https://graphql-code-generator.com), and it can generate `TypedDocumentNode` based on your GraphQL operations.
488
488
@@ -530,7 +530,7 @@ This is helpful since you can implement custom code as part of your GraphQL sche
530
530
531
531
> This document explains how to add custom mutations, but in fact you can add any GraphQL operation (query/mutation/subscriptions). See [Extending the unified schema article](https://graphql-mesh.com/docs/guides/extending-unified-schema) for more information about this feature.
532
532
533
-
To get started, define a `additionalTypeDefs` section in your config file:
533
+
To get started, define an `additionalTypeDefs` section in your config file:
0 commit comments