Skip to content

Commit

Permalink
docs(gatsby-source-shopify): Add missing s into edges string (#11865
Browse files Browse the repository at this point in the history
)
  • Loading branch information
elrumordelaluz authored and sidharthachatterjee committed Feb 18, 2019
1 parent 898873d commit d1a40b0
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions packages/gatsby-source-shopify/README.md
Expand Up @@ -113,7 +113,7 @@ provided on the `comments` field.
```graphql
{
allShopifyArticle {
edge {
edges {
node {
id
author {
Expand Down Expand Up @@ -147,7 +147,7 @@ directly like the following:
```graphql
{
allShopifyBlog {
edge {
edges {
node {
id
title
Expand All @@ -166,7 +166,7 @@ queried directly like the following:
```graphql
{
allShopifyComment {
edge {
edges {
node {
id
author {
Expand All @@ -187,7 +187,7 @@ Products in the collection are provided on the `products` field.
```graphql
{
allShopifyCollection {
edge {
edges {
node {
id
descriptionHtml
Expand Down Expand Up @@ -216,7 +216,7 @@ fields.
```graphql
{
allShopifyProduct {
edge {
edges {
node {
id
descriptionHtml
Expand Down Expand Up @@ -253,7 +253,7 @@ be queried directly like the following:
```graphql
{
allShopifyProductOption {
edge {
edges {
node {
id
name
Expand All @@ -272,7 +272,7 @@ can be queried directly like the following:
```graphql
{
allShopifyProductVariant {
edge {
edges {
node {
id
availableForSale
Expand Down Expand Up @@ -306,7 +306,7 @@ like the following:
```graphql
{
allShopifyShopPolicy {
edge {
edges {
node {
body
title
Expand Down

0 comments on commit d1a40b0

Please sign in to comment.