graphql-relay 0.9.5 → 0.10.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
  SHA1:
3
- metadata.gz: ca117eb5aae107a37d955dbbf1971fcff9b4ce2a
4
- data.tar.gz: b649a37eda6edcac52eeb052a91dbec8044bad8d
3
+ metadata.gz: dbc5dd733714ace5095fc3a5f9a7a465a046af0c
4
+ data.tar.gz: b609505dea93ea2d6a9e685e3ba379d80d35d286
5
5
  SHA512:
6
- metadata.gz: 803c22f1589f6a1e6402daea33475320330c8e742a8a17536aa6d25e42bddff4ef46a831873cfb59c2f53ec07ccce2c85e6b97e23b0c4ccb9d5a7882a71db665
7
- data.tar.gz: 15b528c953e11c1aa3fb07a8a5a66bdc79fc00f9ec466092ea2e50ab1d9fa2fb9ab99718e9c1714bb75b7e083a801042959b6715cc17a4df785c5e13eee21608
6
+ metadata.gz: 2e247f4e0963c80f99bebea7aae3788135cf12b63222478820ad5621d85583c2b5e53e5104c5d33b3be79ca4cbd3b623f98fbbc6ea7f94fd097f79f5d086bdc2
7
+ data.tar.gz: 65c4fe9c224c36bf0a687cbadfedbaac750a7178887b7aa86ee69894efc5f48c117ea8efb3eda037ce2a87a1ecf628328b94e05ed11d6e8a854fe60bb6d0fe73
@@ -8,10 +8,10 @@ module GraphQL
8
8
  # then a connection implementation is fetched with {BaseConnection.connection_for_items}.
9
9
  class ConnectionField
10
10
  ARGUMENT_DEFINITIONS = [
11
- [:first, GraphQL::INT_TYPE],
12
- [:after, GraphQL::STRING_TYPE],
13
- [:last, GraphQL::INT_TYPE],
14
- [:before, GraphQL::STRING_TYPE],
11
+ ["first", GraphQL::INT_TYPE],
12
+ ["after", GraphQL::STRING_TYPE],
13
+ ["last", GraphQL::INT_TYPE],
14
+ ["before", GraphQL::STRING_TYPE],
15
15
  ]
16
16
 
17
17
  DEFAULT_ARGUMENTS = ARGUMENT_DEFINITIONS.reduce({}) do |memo, arg_defn|
@@ -1,5 +1,5 @@
1
1
  module GraphQL
2
2
  module Relay
3
- VERSION = "0.9.5"
3
+ VERSION = "0.10.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: graphql-relay
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.5
4
+ version: 0.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robert Mosolgo
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-05-10 00:00:00.000000000 Z
11
+ date: 2016-05-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: graphql