wcc-contentful-graphql 1.0.0.pre.rc3 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fc2753913f72e46b77d3f3d631267577bd69b55c660b4ef8fe4e2adc208df257
4
- data.tar.gz: 7d78d133a417cd48a4e2cae5e1adcc8577956777cc004c14cfe9ad541e51b3ca
3
+ metadata.gz: 89b67bac137c1026152243fa85661ef63be7ba0a225d952231e0bd3724a81cbc
4
+ data.tar.gz: 7603ef48fd7d0f7554a8dff6837bb08eec4885098a3c5fb0b450a8a2f54ededf
5
5
  SHA512:
6
- metadata.gz: 54810579cfa27d74de57ffc6f6c3f6b1c6985b48e729bd5318e357eda471f6b85372e44cc358270bae428cecdb16e1eee75a115124246bacb9713edb5f07d726
7
- data.tar.gz: e289d09eb3903d948a559de2115f9692231fac56596ab6264866d15d6bc224b5dcad4702609d3ed5c4ccc24ba162d3ca33be6bd852426fd4a453a579e9a58f80
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 `:direct`
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
 
@@ -3,7 +3,7 @@
3
3
  module WCC
4
4
  module Contentful
5
5
  module Graphql
6
- VERSION = '1.0.0-rc3'
6
+ VERSION = '1.0.0'
7
7
  end
8
8
  end
9
9
  end
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.pre.rc3
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-03-23 00:00:00.000000000 Z
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.pre.rc3
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.pre.rc3
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: 1.3.1
305
+ version: '0'
306
306
  requirements: []
307
307
  rubyforge_project:
308
308
  rubygems_version: 2.7.6.2
@@ -316,7 +316,7 @@ summary: '[![Gem Version](https://badge.fury.io/rb/wcc-contentful-graphql.svg)](
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 `:direct`
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=) ##