From 2cb7b7241edcbd26056b6f08cbc58fd15cfe3ec5 Mon Sep 17 00:00:00 2001 From: Dianing Yudono Date: Sat, 24 Oct 2020 19:36:00 +0100 Subject: [PATCH] [docs][guides] improvements to Why Gatsby Uses GraphQL #15235 --- docs/docs/why-gatsby-uses-graphql.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/why-gatsby-uses-graphql.md b/docs/docs/why-gatsby-uses-graphql.md index 124d47cca2d8c..8c6b6666246c8 100644 --- a/docs/docs/why-gatsby-uses-graphql.md +++ b/docs/docs/why-gatsby-uses-graphql.md @@ -256,7 +256,7 @@ GATSBY_GRAPHQL_IDE=playground gatsby develop You can explore the available data schema using the “Docs” tab at the right. -One of the available options is `allProductsJson`, which contains “edges”, and those contain “nodes”. +One of the available options is `allProductsJson`, which contains “edges”, and those contain “nodes”. The `allProductsJson` option was created by the JSON transformer plugin ([`gatsby-transformer-json`](/packages/gatsby-transformer-json/)). The JSON transformer plugin has created one node for each product, and inside the node you can select the data you need for that product.