graphiti_graphql 0.1.16 → 0.1.17
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/lib/graphiti_graphql/runner.rb +2 -2
- data/lib/graphiti_graphql/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 49e4ed0eddc59317af012abe48c74dfdd76eb9d62c4d39db10c35182cd483eed
|
|
4
|
+
data.tar.gz: 4dd34829225d165bf1222a1ce75f052dc8aad990b949909a96c4fc1f96d9df14
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 29c21714fe8d1e488315ab4d184eafe9a70f40360b57c8f455e972536f52949e2197461f10cc1d91cd627ef2cc270c3dbc0a4c6e30efc8708d666ef9fcd5b7a5
|
|
7
|
+
data.tar.gz: 7a14fa1c503cc31d05eb1082286689009de08c9d7fbc156e6813dc8d447fcbe34eba5360939c82682cca760dfe42d08331c1a25da4e6af5e76af689567d087df
|
|
@@ -326,8 +326,8 @@ module GraphitiGraphQL
|
|
|
326
326
|
end
|
|
327
327
|
|
|
328
328
|
def gather_stats(params, selection, variable_hash, chained_name = nil)
|
|
329
|
-
stats = selection.children.find { |c| c.name == "stats" }
|
|
330
|
-
nodes = selection.children.find { |c| c.name == "nodes" }
|
|
329
|
+
stats = selection.children.find { |c| c.respond_to?(:name) && c.name == "stats" }
|
|
330
|
+
nodes = selection.children.find { |c| c.respond_to?(:name) && c.name == "nodes" }
|
|
331
331
|
|
|
332
332
|
if stats
|
|
333
333
|
stat_param = {}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: graphiti_graphql
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.17
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Lee Richmond
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-04-
|
|
11
|
+
date: 2022-04-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: graphiti
|
|
@@ -259,7 +259,7 @@ homepage: https://www.graphiti.dev
|
|
|
259
259
|
licenses: []
|
|
260
260
|
metadata:
|
|
261
261
|
homepage_uri: https://www.graphiti.dev
|
|
262
|
-
post_install_message:
|
|
262
|
+
post_install_message:
|
|
263
263
|
rdoc_options: []
|
|
264
264
|
require_paths:
|
|
265
265
|
- lib
|
|
@@ -274,8 +274,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
274
274
|
- !ruby/object:Gem::Version
|
|
275
275
|
version: '0'
|
|
276
276
|
requirements: []
|
|
277
|
-
rubygems_version: 3.3.
|
|
278
|
-
signing_key:
|
|
277
|
+
rubygems_version: 3.0.3.1
|
|
278
|
+
signing_key:
|
|
279
279
|
specification_version: 4
|
|
280
280
|
summary: GraphQL support for Graphiti
|
|
281
281
|
test_files: []
|