Skip to content

Commit

Permalink
fix(gatsby-source-shopify): Correct interface query (#37788) (#37791)
Browse files Browse the repository at this point in the history
Co-authored-by: Ward Peeters <ward@coding-tech.com>
  • Loading branch information
ViCo0TeCH and wardpeet committed Mar 28, 2023
1 parent 370ba2a commit 944b074
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ Array [
width
}
featuredMedia {
id
... on Node {
id
}
}
feedback {
details {
Expand Down Expand Up @@ -307,7 +309,9 @@ Array [
media {
edges {
node {
id
... on Node {
id
}
}
}
}
Expand Down Expand Up @@ -677,7 +681,9 @@ Array [
width
}
featuredMedia {
id
... on Node {
id
}
}
feedback {
details {
Expand Down Expand Up @@ -949,7 +955,9 @@ Array [
media {
edges {
node {
id
... on Node {
id
}
}
}
}
Expand Down Expand Up @@ -1319,7 +1327,9 @@ Array [
width
}
featuredMedia {
id
... on Node {
id
}
}
feedback {
details {
Expand Down Expand Up @@ -1591,7 +1601,9 @@ Array [
media {
edges {
node {
id
... on Node {
id
}
}
}
}
Expand Down Expand Up @@ -1961,7 +1973,9 @@ Array [
width
}
featuredMedia {
id
... on Node {
id
}
}
feedback {
details {
Expand Down Expand Up @@ -2233,7 +2247,9 @@ Array [
media {
edges {
node {
id
... on Node {
id
}
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,9 @@ export class ProductVariantsQuery extends BulkQuery {
media {
edges {
node {
id
... on Node {
id
}
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ export class ProductsQuery extends BulkQuery {
width
}
featuredMedia {
id
... on Node {
id
}
}
feedback {
details {
Expand Down

0 comments on commit 944b074

Please sign in to comment.