datocms-plugin-frontify-asset-source 0.1.5 → 0.1.7
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/README.md +12 -0
- package/dist/assets/index-C3Gq_ZZJ.js +107 -0
- package/dist/assets/index-rYp1TLtR.css +217 -0
- package/dist/index.html +2 -2
- package/package.json +27 -19
- package/dist/assets/index-BOSHYXjV.js +0 -148
- package/dist/assets/index-CoZuRBsX.css +0 -1
package/README.md
CHANGED
|
@@ -5,3 +5,15 @@ Insert photos from your Frontify Account directly inside of your DatoCMS project
|
|
|
5
5
|
## Requirements
|
|
6
6
|
|
|
7
7
|
- Frontify Account
|
|
8
|
+
|
|
9
|
+
## GraphQL
|
|
10
|
+
|
|
11
|
+
### Update GraphQL schema
|
|
12
|
+
|
|
13
|
+
Set your Frontify domain and token in environment variables, then run:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
gql-tada generate schema "https://$FRONTIFY_DOMAIN.frontify.com/graphql" \
|
|
17
|
+
--header "Authorization: Bearer $FRONTIFY_TOKEN" \
|
|
18
|
+
--output ./schema.graphql
|
|
19
|
+
```
|