wcc-contentful-graphql 1.0.0.pre.rc3 → 1.0.0
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.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/wcc/contentful/graphql/version.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 89b67bac137c1026152243fa85661ef63be7ba0a225d952231e0bd3724a81cbc
|
4
|
+
data.tar.gz: 7603ef48fd7d0f7554a8dff6837bb08eec4885098a3c5fb0b450a8a2f54ededf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 47379cca828e5fdba7e1eb354252b0b25543d44ce303554fd3539bef00883a14754b9ed9627c4f6d92ec34a9dc20b87f4e8f9bb743ac4d8299c31f5a5626d4b7
|
7
|
+
data.tar.gz: 597b28e6c71c65522f68866afe4c20f734503c6b082c954ab059f4a5eacd179a1a0ef08e993ea95c8a2dac289687d7642260028b5670fcc6833b19b82f2b0192
|
data/README.md
CHANGED
@@ -11,7 +11,7 @@ resolve all the requested data.
|
|
11
11
|
|
12
12
|
### Important note!
|
13
13
|
The GraphQL schema currently does not utilize the "include" parameter, so it is
|
14
|
-
a very good idea to configure your store to either `:
|
14
|
+
a very good idea to configure your store to either `:eager_sync`
|
15
15
|
or `:lazy_sync`. If you don't do this, you will see a lot of requests to
|
16
16
|
Contentful for specific entries by ID as the GraphQL resolver walks all your links!
|
17
17
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: wcc-contentful-graphql
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Watermark Dev
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-04-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: coveralls
|
@@ -254,14 +254,14 @@ dependencies:
|
|
254
254
|
requirements:
|
255
255
|
- - "~>"
|
256
256
|
- !ruby/object:Gem::Version
|
257
|
-
version: 1.0.0
|
257
|
+
version: 1.0.0
|
258
258
|
type: :runtime
|
259
259
|
prerelease: false
|
260
260
|
version_requirements: !ruby/object:Gem::Requirement
|
261
261
|
requirements:
|
262
262
|
- - "~>"
|
263
263
|
- !ruby/object:Gem::Version
|
264
|
-
version: 1.0.0
|
264
|
+
version: 1.0.0
|
265
265
|
description: GraphQL interface over WCC::Contentful store
|
266
266
|
email:
|
267
267
|
- dev@watermark.org
|
@@ -300,9 +300,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
300
300
|
version: '2.3'
|
301
301
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
302
302
|
requirements:
|
303
|
-
- - "
|
303
|
+
- - ">="
|
304
304
|
- !ruby/object:Gem::Version
|
305
|
-
version:
|
305
|
+
version: '0'
|
306
306
|
requirements: []
|
307
307
|
rubyforge_project:
|
308
308
|
rubygems_version: 2.7.6.2
|
@@ -316,7 +316,7 @@ summary: '[](
|
|
316
316
|
queries against this GraphQL schema to get all your contentful data. Under the
|
317
317
|
hood, queries are executed against your backing store to resolve all the requested
|
318
318
|
data. ### Important note! The GraphQL schema currently does not utilize the "include"
|
319
|
-
parameter, so it is a very good idea to configure your store to either `:
|
319
|
+
parameter, so it is a very good idea to configure your store to either `:eager_sync`
|
320
320
|
or `:lazy_sync`. If you don''t do this, you will see a lot of requests to Contentful
|
321
321
|
for specific entries by ID as the GraphQL resolver walks all your links! [More
|
322
322
|
info on configuration can be found here](https://www.rubydoc.info/gems/wcc-contentful/WCC%2FContentful%2FConfiguration:store=) ##
|