@graphcommerce/docs 8.1.0-canary.23 → 8.1.0-canary.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2 -0
- package/framework/plugins-graphql.md +3 -3
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -41,7 +41,7 @@ query ProductList(
|
|
|
41
41
|
}
|
|
42
42
|
|
|
43
43
|
# Fragment used for a ProductListItem used when rendering any listing
|
|
44
|
-
fragment ProductListItem on ProductInterface
|
|
44
|
+
fragment ProductListItem on ProductInterface {
|
|
45
45
|
uid
|
|
46
46
|
...ProductLink
|
|
47
47
|
sku
|
|
@@ -59,8 +59,8 @@ fragment ProductListItem on ProductInterface @injectable {
|
|
|
59
59
|
|
|
60
60
|
## How to modify an existing query?
|
|
61
61
|
|
|
62
|
-
|
|
63
|
-
|
|
62
|
+
Fragments inside GraphCommerce allows you to inject our own fields in the
|
|
63
|
+
fragments.
|
|
64
64
|
|
|
65
65
|
```graphql
|
|
66
66
|
fragment MyCustomFragment on ProductInterface
|
package/package.json
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
"name": "@graphcommerce/docs",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/docs",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce/docs",
|
|
5
|
-
"version": "8.1.0-canary.
|
|
5
|
+
"version": "8.1.0-canary.24",
|
|
6
6
|
"sideEffects": true,
|
|
7
7
|
"peerDependencies": {
|
|
8
|
-
"@graphcommerce/prettier-config-pwa": "^8.1.0-canary.
|
|
8
|
+
"@graphcommerce/prettier-config-pwa": "^8.1.0-canary.24"
|
|
9
9
|
},
|
|
10
10
|
"prettier": "@graphcommerce/prettier-config-pwa"
|
|
11
11
|
}
|