elasticgraph-graphql 0.18.0.4 → 0.18.0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/elastic_graph/graphql/aggregation/field_path_encoder.rb +2 -2
- data/lib/elastic_graph/graphql/aggregation/key.rb +2 -2
- data/lib/elastic_graph/graphql/config.rb +3 -3
- data/lib/elastic_graph/graphql/datastore_query/document_paginator.rb +1 -1
- data/lib/elastic_graph/graphql/datastore_query/paginator.rb +1 -1
- data/lib/elastic_graph/graphql/datastore_query.rb +6 -6
- data/lib/elastic_graph/graphql/datastore_response/search_response.rb +2 -2
- data/lib/elastic_graph/graphql/datastore_search_router.rb +3 -3
- data/lib/elastic_graph/graphql/decoded_cursor.rb +7 -7
- data/lib/elastic_graph/graphql/http_endpoint.rb +1 -1
- data/lib/elastic_graph/graphql/query_executor.rb +1 -1
- data/lib/elastic_graph/graphql/resolvers/resolvable_value.rb +2 -2
- data/lib/elastic_graph/graphql/schema/arguments.rb +1 -1
- data/lib/elastic_graph/graphql/schema/enum_value.rb +2 -2
- data/lib/elastic_graph/graphql/schema/field.rb +2 -2
- data/lib/elastic_graph/graphql/schema/type.rb +3 -3
- data/lib/elastic_graph/graphql/schema.rb +4 -4
- metadata +18 -16
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 53e5c759fafb5fe181ae65912c42b21d6d6dbe8cbd3558962cb5a56bc94944b6
|
4
|
+
data.tar.gz: 862a18dd839b8ee841b91430eb7188612c5483c5701930cf23cfbb22ce44e876
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4739bc5c2978a75528777b58073ba9e606a5964ff1adcfbb1b19c77eb43e29c5bb19e5aa137d2b530bd2937ca5499538149959b23cf55a7912f9b04b50809e3f
|
7
|
+
data.tar.gz: fb6b7226810f2f58bd7aedca80a9e1be097ffbbc8dbb5532805f9d98392006e2c4f0db7344c64250c3bd6adcdb917972e230324cc876c0639bba3a40d0601067
|
@@ -6,7 +6,7 @@
|
|
6
6
|
#
|
7
7
|
# frozen_string_literal: true
|
8
8
|
|
9
|
-
require "elastic_graph/
|
9
|
+
require "elastic_graph/errors"
|
10
10
|
|
11
11
|
module ElasticGraph
|
12
12
|
class GraphQL
|
@@ -38,7 +38,7 @@ module ElasticGraph
|
|
38
38
|
|
39
39
|
private_class_method def self.verify_delimiters(str)
|
40
40
|
if str.to_s.include?(DELIMITER)
|
41
|
-
raise InvalidArgumentValueError, %("#{str}" contains delimiter: "#{DELIMITER}")
|
41
|
+
raise Errors::InvalidArgumentValueError, %("#{str}" contains delimiter: "#{DELIMITER}")
|
42
42
|
end
|
43
43
|
end
|
44
44
|
end
|
@@ -6,7 +6,7 @@
|
|
6
6
|
#
|
7
7
|
# frozen_string_literal: true
|
8
8
|
|
9
|
-
require "elastic_graph/
|
9
|
+
require "elastic_graph/errors"
|
10
10
|
require "elastic_graph/graphql/aggregation/field_path_encoder"
|
11
11
|
|
12
12
|
module ElasticGraph
|
@@ -77,7 +77,7 @@ module ElasticGraph
|
|
77
77
|
def self.verify_no_delimiter_in(*parts)
|
78
78
|
parts.each do |part|
|
79
79
|
if part.to_s.include?(DELIMITER)
|
80
|
-
raise InvalidArgumentValueError, %("#{part}" contains delimiter: "#{DELIMITER}")
|
80
|
+
raise Errors::InvalidArgumentValueError, %("#{part}" contains delimiter: "#{DELIMITER}")
|
81
81
|
end
|
82
82
|
end
|
83
83
|
end
|
@@ -6,7 +6,7 @@
|
|
6
6
|
#
|
7
7
|
# frozen_string_literal: true
|
8
8
|
|
9
|
-
require "elastic_graph/
|
9
|
+
require "elastic_graph/errors"
|
10
10
|
require "elastic_graph/graphql/client"
|
11
11
|
require "elastic_graph/schema_artifacts/runtime_metadata/extension_loader"
|
12
12
|
|
@@ -33,14 +33,14 @@ module ElasticGraph
|
|
33
33
|
extra_keys = parsed_yaml.keys - EXPECTED_KEYS
|
34
34
|
|
35
35
|
unless extra_keys.empty?
|
36
|
-
raise ConfigError, "Unknown `graphql` config settings: #{extra_keys.join(", ")}"
|
36
|
+
raise Errors::ConfigError, "Unknown `graphql` config settings: #{extra_keys.join(", ")}"
|
37
37
|
end
|
38
38
|
|
39
39
|
extension_loader = SchemaArtifacts::RuntimeMetadata::ExtensionLoader.new(::Module.new)
|
40
40
|
extension_mods = parsed_yaml.fetch("extension_modules", []).map do |mod_hash|
|
41
41
|
extension_loader.load(mod_hash.fetch("extension_name"), from: mod_hash.fetch("require_path"), config: {}).extension_class.tap do |mod|
|
42
42
|
unless mod.instance_of?(::Module)
|
43
|
-
raise ConfigError, "`#{mod_hash.fetch("extension_name")}` is not a module, but all application extension modules must be modules."
|
43
|
+
raise Errors::ConfigError, "`#{mod_hash.fetch("extension_name")}` is not a module, but all application extension modules must be modules."
|
44
44
|
end
|
45
45
|
end
|
46
46
|
end
|
@@ -6,7 +6,7 @@
|
|
6
6
|
#
|
7
7
|
# frozen_string_literal: true
|
8
8
|
|
9
|
-
require "elastic_graph/
|
9
|
+
require "elastic_graph/errors"
|
10
10
|
require "elastic_graph/graphql/aggregation/query"
|
11
11
|
require "elastic_graph/graphql/aggregation/query_optimizer"
|
12
12
|
require "elastic_graph/graphql/decoded_cursor"
|
@@ -65,7 +65,7 @@ module ElasticGraph
|
|
65
65
|
)
|
66
66
|
|
67
67
|
if search_index_definitions.empty?
|
68
|
-
raise SearchFailedError, "Query is invalid, since it contains no `search_index_definitions`."
|
68
|
+
raise Errors::SearchFailedError, "Query is invalid, since it contains no `search_index_definitions`."
|
69
69
|
end
|
70
70
|
end
|
71
71
|
}
|
@@ -121,7 +121,7 @@ module ElasticGraph
|
|
121
121
|
missing_queries = expected_queries - actual_queries
|
122
122
|
extra_queries = actual_queries - expected_queries
|
123
123
|
|
124
|
-
raise SearchFailedError, "The `responses_hash` does not have the expected set of queries as keys. " \
|
124
|
+
raise Errors::SearchFailedError, "The `responses_hash` does not have the expected set of queries as keys. " \
|
125
125
|
"This can cause problems for the `GraphQL::Dataloader` and suggests a bug in the logic that should be fixed.\n\n" \
|
126
126
|
"Missing queries (#{missing_queries.size}):\n#{missing_queries.map(&:inspect).join("\n")}.\n\n" \
|
127
127
|
"Extra queries (#{extra_queries.size}): #{extra_queries.map(&:inspect).join("\n")}"
|
@@ -133,7 +133,7 @@ module ElasticGraph
|
|
133
133
|
# Both query objects are left unchanged.
|
134
134
|
def merge(other_query)
|
135
135
|
if search_index_definitions != other_query.search_index_definitions
|
136
|
-
raise ElasticGraph::InvalidMergeError, "`search_index_definitions` conflict while merging between " \
|
136
|
+
raise ElasticGraph::Errors::InvalidMergeError, "`search_index_definitions` conflict while merging between " \
|
137
137
|
"#{search_index_definitions} and #{other_query.search_index_definitions}"
|
138
138
|
end
|
139
139
|
|
@@ -177,11 +177,11 @@ module ElasticGraph
|
|
177
177
|
end
|
178
178
|
|
179
179
|
# Returns the name of the datastore cluster as a String where this query should be setn.
|
180
|
-
# Unless exactly 1 cluster name is found, this method raises a ConfigError.
|
180
|
+
# Unless exactly 1 cluster name is found, this method raises a Errors::ConfigError.
|
181
181
|
def cluster_name
|
182
182
|
cluster_name = search_index_definitions.map(&:cluster_to_query).uniq
|
183
183
|
return cluster_name.first if cluster_name.size == 1
|
184
|
-
raise ConfigError, "Found different datastore clusters (#{cluster_name}) to query " \
|
184
|
+
raise Errors::ConfigError, "Found different datastore clusters (#{cluster_name}) to query " \
|
185
185
|
"for query targeting indices: #{search_index_definitions}"
|
186
186
|
end
|
187
187
|
|
@@ -6,7 +6,7 @@
|
|
6
6
|
#
|
7
7
|
# frozen_string_literal: true
|
8
8
|
|
9
|
-
require "elastic_graph/
|
9
|
+
require "elastic_graph/errors"
|
10
10
|
require "elastic_graph/graphql/decoded_cursor"
|
11
11
|
require "elastic_graph/graphql/datastore_response/document"
|
12
12
|
require "forwardable"
|
@@ -66,7 +66,7 @@ module ElasticGraph
|
|
66
66
|
end
|
67
67
|
|
68
68
|
def total_document_count
|
69
|
-
super || raise(CountUnavailableError, "#{__method__} is unavailable; set `query.total_document_count_needed = true` to make it available")
|
69
|
+
super || raise(Errors::CountUnavailableError, "#{__method__} is unavailable; set `query.total_document_count_needed = true` to make it available")
|
70
70
|
end
|
71
71
|
|
72
72
|
def to_s
|
@@ -7,7 +7,7 @@
|
|
7
7
|
# frozen_string_literal: true
|
8
8
|
|
9
9
|
require "elastic_graph/constants"
|
10
|
-
require "elastic_graph/
|
10
|
+
require "elastic_graph/errors"
|
11
11
|
require "elastic_graph/graphql/datastore_response/search_response"
|
12
12
|
require "elastic_graph/graphql/query_details_tracker"
|
13
13
|
require "elastic_graph/support/threading"
|
@@ -108,7 +108,7 @@ module ElasticGraph
|
|
108
108
|
|
109
109
|
(min_query_deadline - @monotonic_clock.now_in_ms).tap do |timeout|
|
110
110
|
if timeout <= 0
|
111
|
-
raise RequestExceededDeadlineError, "It is already #{timeout.abs} ms past the search deadline."
|
111
|
+
raise Errors::RequestExceededDeadlineError, "It is already #{timeout.abs} ms past the search deadline."
|
112
112
|
end
|
113
113
|
end
|
114
114
|
end
|
@@ -127,7 +127,7 @@ module ElasticGraph
|
|
127
127
|
ERROR
|
128
128
|
end.join("\n\n")
|
129
129
|
|
130
|
-
raise SearchFailedError, "Got #{failures.size} search failure(s):\n\n#{formatted_failures}"
|
130
|
+
raise Errors::SearchFailedError, "Got #{failures.size} search failure(s):\n\n#{formatted_failures}"
|
131
131
|
end
|
132
132
|
|
133
133
|
# Examine successful query responses and log any shard failure they encounter
|
@@ -8,7 +8,7 @@
|
|
8
8
|
|
9
9
|
require "base64"
|
10
10
|
require "elastic_graph/constants"
|
11
|
-
require "elastic_graph/
|
11
|
+
require "elastic_graph/errors"
|
12
12
|
require "elastic_graph/support/memoizable_data"
|
13
13
|
require "json"
|
14
14
|
|
@@ -39,17 +39,17 @@ module ElasticGraph
|
|
39
39
|
# Tries to decode the given string cursor, returning `nil` if it is invalid.
|
40
40
|
def self.try_decode(string)
|
41
41
|
decode!(string)
|
42
|
-
rescue InvalidCursorError
|
42
|
+
rescue Errors::InvalidCursorError
|
43
43
|
nil
|
44
44
|
end
|
45
45
|
|
46
|
-
# Tries to decode the given string cursor, raising an `InvalidCursorError` if it's invalid.
|
46
|
+
# Tries to decode the given string cursor, raising an `Errors::InvalidCursorError` if it's invalid.
|
47
47
|
def self.decode!(string)
|
48
48
|
return SINGLETON if string == SINGLETON_CURSOR
|
49
49
|
json = ::Base64.urlsafe_decode64(string)
|
50
50
|
new(::JSON.parse(json))
|
51
51
|
rescue ::ArgumentError, ::JSON::ParserError
|
52
|
-
raise InvalidCursorError, "`#{string}` is an invalid cursor."
|
52
|
+
raise Errors::InvalidCursorError, "`#{string}` is an invalid cursor."
|
53
53
|
end
|
54
54
|
|
55
55
|
# Encodes the cursor to a string using JSON and Base64 encoding.
|
@@ -79,7 +79,7 @@ module ElasticGraph
|
|
79
79
|
def self.from_sort_list(sort_list)
|
80
80
|
sort_fields = sort_list.map do |hash|
|
81
81
|
if hash.values.any? { |v| !v.is_a?(::Hash) } || hash.values.flat_map(&:keys) != ["order"]
|
82
|
-
raise InvalidSortFieldsError,
|
82
|
+
raise Errors::InvalidSortFieldsError,
|
83
83
|
"Given `sort_list` contained an invalid entry. Each must be a flat hash with one entry. Got: #{sort_list.inspect}"
|
84
84
|
end
|
85
85
|
|
@@ -89,7 +89,7 @@ module ElasticGraph
|
|
89
89
|
end
|
90
90
|
|
91
91
|
if sort_fields.uniq.size < sort_fields.size
|
92
|
-
raise InvalidSortFieldsError,
|
92
|
+
raise Errors::InvalidSortFieldsError,
|
93
93
|
"Given `sort_list` contains a duplicate field, which the CursorEncoder cannot handler. " \
|
94
94
|
"The caller is responsible for de-duplicating the sort list fist. Got: #{sort_list.inspect}"
|
95
95
|
end
|
@@ -99,7 +99,7 @@ module ElasticGraph
|
|
99
99
|
|
100
100
|
def build(sort_values)
|
101
101
|
unless sort_values.size == sort_fields.size
|
102
|
-
raise CursorEncodingError,
|
102
|
+
raise Errors::CursorEncodingError,
|
103
103
|
"size of sort values (#{sort_values.inspect}) does not match the " \
|
104
104
|
"size of sort fields (#{sort_fields.inspect})"
|
105
105
|
end
|
@@ -29,7 +29,7 @@ module ElasticGraph
|
|
29
29
|
# Executes the given `query_string` using the provided `variables`.
|
30
30
|
#
|
31
31
|
# `timeout_in_ms` can be provided to limit how long the query runs for. If the timeout
|
32
|
-
# is exceeded, `RequestExceededDeadlineError` will be raised. Note that `timeout_in_ms`
|
32
|
+
# is exceeded, `Errors::RequestExceededDeadlineError` will be raised. Note that `timeout_in_ms`
|
33
33
|
# does not provide an absolute guarantee that the query will take no longer than the
|
34
34
|
# provided value; it is only used to halt datastore queries. In process computation
|
35
35
|
# can make the total query time exceeded the specified timeout.
|
@@ -6,7 +6,7 @@
|
|
6
6
|
#
|
7
7
|
# frozen_string_literal: true
|
8
8
|
|
9
|
-
require "elastic_graph/
|
9
|
+
require "elastic_graph/errors"
|
10
10
|
require "elastic_graph/support/memoizable_data"
|
11
11
|
|
12
12
|
module ElasticGraph
|
@@ -48,7 +48,7 @@ module ElasticGraph
|
|
48
48
|
|
49
49
|
def canonical_name_for(name, element_type)
|
50
50
|
schema_element_names.canonical_name_for(name) ||
|
51
|
-
raise(SchemaError, "#{element_type} `#{name}` is not a defined schema element")
|
51
|
+
raise(Errors::SchemaError, "#{element_type} `#{name}` is not a defined schema element")
|
52
52
|
end
|
53
53
|
end
|
54
54
|
end
|
@@ -58,7 +58,7 @@ module ElasticGraph
|
|
58
58
|
# extra memory allocation and GC for the hash.
|
59
59
|
arg_defn = arg_defns.find do |a|
|
60
60
|
a.keyword == key
|
61
|
-
end || raise(SchemaError, "Cannot find an argument definition for #{key.inspect} on `#{args_owner.name}`")
|
61
|
+
end || raise(Errors::SchemaError, "Cannot find an argument definition for #{key.inspect} on `#{args_owner.name}`")
|
62
62
|
|
63
63
|
next_owner = arg_defn.type.unwrap
|
64
64
|
accumulator[arg_defn.name] = to_schema_form(value, next_owner)
|
@@ -6,7 +6,7 @@
|
|
6
6
|
#
|
7
7
|
# frozen_string_literal: true
|
8
8
|
|
9
|
-
require "elastic_graph/
|
9
|
+
require "elastic_graph/errors"
|
10
10
|
|
11
11
|
module ElasticGraph
|
12
12
|
class GraphQL
|
@@ -15,7 +15,7 @@ module ElasticGraph
|
|
15
15
|
class EnumValue < ::Data.define(:name, :type, :runtime_metadata)
|
16
16
|
def sort_clauses
|
17
17
|
sort_clause = runtime_metadata&.sort_field&.then { |sf| {sf.field_path => {"order" => sf.direction.to_s}} } ||
|
18
|
-
raise(SchemaError, "Runtime metadata provides no `sort_field` for #{type.name}.#{name} enum value.")
|
18
|
+
raise(Errors::SchemaError, "Runtime metadata provides no `sort_field` for #{type.name}.#{name} enum value.")
|
19
19
|
|
20
20
|
[sort_clause]
|
21
21
|
end
|
@@ -6,7 +6,7 @@
|
|
6
6
|
#
|
7
7
|
# frozen_string_literal: true
|
8
8
|
|
9
|
-
require "elastic_graph/
|
9
|
+
require "elastic_graph/errors"
|
10
10
|
require "elastic_graph/graphql/schema/relation_join"
|
11
11
|
require "elastic_graph/graphql/schema/arguments"
|
12
12
|
|
@@ -126,7 +126,7 @@ module ElasticGraph
|
|
126
126
|
def sort_argument_type
|
127
127
|
@sort_argument_type ||= begin
|
128
128
|
graphql_argument = @graphql_field.arguments.fetch(schema_element_names.order_by) do
|
129
|
-
raise SchemaError, "`#{schema_element_names.order_by}` argument not defined for field `#{parent_type.name}.#{name}`."
|
129
|
+
raise Errors::SchemaError, "`#{schema_element_names.order_by}` argument not defined for field `#{parent_type.name}.#{name}`."
|
130
130
|
end
|
131
131
|
@schema.type_from(graphql_argument.type.unwrap)
|
132
132
|
end
|
@@ -7,7 +7,7 @@
|
|
7
7
|
# frozen_string_literal: true
|
8
8
|
|
9
9
|
require "elastic_graph/datastore_core/index_definition"
|
10
|
-
require "elastic_graph/
|
10
|
+
require "elastic_graph/errors"
|
11
11
|
require "elastic_graph/graphql/schema/field"
|
12
12
|
require "elastic_graph/graphql/schema/enum_value"
|
13
13
|
require "forwardable"
|
@@ -118,7 +118,7 @@ module ElasticGraph
|
|
118
118
|
rescue KeyError => e
|
119
119
|
msg = "No field named #{field_name} (on type #{name}) could be found"
|
120
120
|
msg += "; Possible alternatives: [#{e.corrections.join(", ").delete('"')}]." if e.corrections.any?
|
121
|
-
raise NotFoundError, msg
|
121
|
+
raise Errors::NotFoundError, msg
|
122
122
|
end
|
123
123
|
|
124
124
|
def enum_value_named(enum_value_name)
|
@@ -233,7 +233,7 @@ module ElasticGraph
|
|
233
233
|
rescue KeyError => e
|
234
234
|
msg = "No enum value named #{enum_value_name} (on type #{name}) could be found"
|
235
235
|
msg += "; Possible alternatives: [#{e.corrections.join(", ").delete('"')}]." if e.corrections.any?
|
236
|
-
raise NotFoundError, msg
|
236
|
+
raise Errors::NotFoundError, msg
|
237
237
|
end
|
238
238
|
|
239
239
|
def build_fields_by_name_hash(schema, graphql_type)
|
@@ -10,7 +10,7 @@ require "digest/md5"
|
|
10
10
|
require "forwardable"
|
11
11
|
require "graphql"
|
12
12
|
require "elastic_graph/constants"
|
13
|
-
require "elastic_graph/
|
13
|
+
require "elastic_graph/errors"
|
14
14
|
require "elastic_graph/graphql/monkey_patches/schema_field"
|
15
15
|
require "elastic_graph/graphql/monkey_patches/schema_object"
|
16
16
|
require "elastic_graph/graphql/schema/field"
|
@@ -88,7 +88,7 @@ module ElasticGraph
|
|
88
88
|
if index_definition_name.include?(ROLLOVER_INDEX_INFIX_MARKER)
|
89
89
|
raise ArgumentError, "`#{index_definition_name}` is the name of a rollover index; pass the name of the parent index definition instead."
|
90
90
|
else
|
91
|
-
raise NotFoundError, "The index definition `#{index_definition_name}` does not appear to exist. Is it misspelled?"
|
91
|
+
raise Errors::NotFoundError, "The index definition `#{index_definition_name}` does not appear to exist. Is it misspelled?"
|
92
92
|
end
|
93
93
|
end
|
94
94
|
end
|
@@ -133,7 +133,7 @@ module ElasticGraph
|
|
133
133
|
rescue KeyError => e
|
134
134
|
msg = "No type named #{type_name} could be found"
|
135
135
|
msg += "; Possible alternatives: [#{e.corrections.join(", ").delete('"')}]." if e.corrections.any?
|
136
|
-
raise NotFoundError, msg
|
136
|
+
raise Errors::NotFoundError, msg
|
137
137
|
end
|
138
138
|
|
139
139
|
def resolver
|
@@ -152,7 +152,7 @@ module ElasticGraph
|
|
152
152
|
@indexed_document_types_by_index_definition_name ||= indexed_document_types.each_with_object({}) do |type, hash|
|
153
153
|
type.index_definitions.each do |index_def|
|
154
154
|
if hash.key?(index_def.name)
|
155
|
-
raise SchemaError, "DatastoreCore::IndexDefinition #{index_def.name} is used multiple times: #{type} vs #{hash[index_def.name]}"
|
155
|
+
raise Errors::SchemaError, "DatastoreCore::IndexDefinition #{index_def.name} is used multiple times: #{type} vs #{hash[index_def.name]}"
|
156
156
|
end
|
157
157
|
|
158
158
|
hash[index_def.name] = type
|
metadata
CHANGED
@@ -1,14 +1,16 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: elasticgraph-graphql
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.18.0.
|
4
|
+
version: 0.18.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Myron Marston
|
8
|
+
- Ben VandenBos
|
9
|
+
- Square Engineering
|
8
10
|
autorequire:
|
9
11
|
bindir: exe
|
10
12
|
cert_chain: []
|
11
|
-
date: 2024-09-
|
13
|
+
date: 2024-09-20 00:00:00.000000000 Z
|
12
14
|
dependencies:
|
13
15
|
- !ruby/object:Gem::Dependency
|
14
16
|
name: rubocop-factory_bot
|
@@ -266,28 +268,28 @@ dependencies:
|
|
266
268
|
requirements:
|
267
269
|
- - '='
|
268
270
|
- !ruby/object:Gem::Version
|
269
|
-
version: 0.18.0.
|
271
|
+
version: 0.18.0.5
|
270
272
|
type: :runtime
|
271
273
|
prerelease: false
|
272
274
|
version_requirements: !ruby/object:Gem::Requirement
|
273
275
|
requirements:
|
274
276
|
- - '='
|
275
277
|
- !ruby/object:Gem::Version
|
276
|
-
version: 0.18.0.
|
278
|
+
version: 0.18.0.5
|
277
279
|
- !ruby/object:Gem::Dependency
|
278
280
|
name: elasticgraph-schema_artifacts
|
279
281
|
requirement: !ruby/object:Gem::Requirement
|
280
282
|
requirements:
|
281
283
|
- - '='
|
282
284
|
- !ruby/object:Gem::Version
|
283
|
-
version: 0.18.0.
|
285
|
+
version: 0.18.0.5
|
284
286
|
type: :runtime
|
285
287
|
prerelease: false
|
286
288
|
version_requirements: !ruby/object:Gem::Requirement
|
287
289
|
requirements:
|
288
290
|
- - '='
|
289
291
|
- !ruby/object:Gem::Version
|
290
|
-
version: 0.18.0.
|
292
|
+
version: 0.18.0.5
|
291
293
|
- !ruby/object:Gem::Dependency
|
292
294
|
name: graphql
|
293
295
|
requirement: !ruby/object:Gem::Requirement
|
@@ -308,70 +310,70 @@ dependencies:
|
|
308
310
|
requirements:
|
309
311
|
- - '='
|
310
312
|
- !ruby/object:Gem::Version
|
311
|
-
version: 0.18.0.
|
313
|
+
version: 0.18.0.5
|
312
314
|
type: :development
|
313
315
|
prerelease: false
|
314
316
|
version_requirements: !ruby/object:Gem::Requirement
|
315
317
|
requirements:
|
316
318
|
- - '='
|
317
319
|
- !ruby/object:Gem::Version
|
318
|
-
version: 0.18.0.
|
320
|
+
version: 0.18.0.5
|
319
321
|
- !ruby/object:Gem::Dependency
|
320
322
|
name: elasticgraph-elasticsearch
|
321
323
|
requirement: !ruby/object:Gem::Requirement
|
322
324
|
requirements:
|
323
325
|
- - '='
|
324
326
|
- !ruby/object:Gem::Version
|
325
|
-
version: 0.18.0.
|
327
|
+
version: 0.18.0.5
|
326
328
|
type: :development
|
327
329
|
prerelease: false
|
328
330
|
version_requirements: !ruby/object:Gem::Requirement
|
329
331
|
requirements:
|
330
332
|
- - '='
|
331
333
|
- !ruby/object:Gem::Version
|
332
|
-
version: 0.18.0.
|
334
|
+
version: 0.18.0.5
|
333
335
|
- !ruby/object:Gem::Dependency
|
334
336
|
name: elasticgraph-opensearch
|
335
337
|
requirement: !ruby/object:Gem::Requirement
|
336
338
|
requirements:
|
337
339
|
- - '='
|
338
340
|
- !ruby/object:Gem::Version
|
339
|
-
version: 0.18.0.
|
341
|
+
version: 0.18.0.5
|
340
342
|
type: :development
|
341
343
|
prerelease: false
|
342
344
|
version_requirements: !ruby/object:Gem::Requirement
|
343
345
|
requirements:
|
344
346
|
- - '='
|
345
347
|
- !ruby/object:Gem::Version
|
346
|
-
version: 0.18.0.
|
348
|
+
version: 0.18.0.5
|
347
349
|
- !ruby/object:Gem::Dependency
|
348
350
|
name: elasticgraph-indexer
|
349
351
|
requirement: !ruby/object:Gem::Requirement
|
350
352
|
requirements:
|
351
353
|
- - '='
|
352
354
|
- !ruby/object:Gem::Version
|
353
|
-
version: 0.18.0.
|
355
|
+
version: 0.18.0.5
|
354
356
|
type: :development
|
355
357
|
prerelease: false
|
356
358
|
version_requirements: !ruby/object:Gem::Requirement
|
357
359
|
requirements:
|
358
360
|
- - '='
|
359
361
|
- !ruby/object:Gem::Version
|
360
|
-
version: 0.18.0.
|
362
|
+
version: 0.18.0.5
|
361
363
|
- !ruby/object:Gem::Dependency
|
362
364
|
name: elasticgraph-schema_definition
|
363
365
|
requirement: !ruby/object:Gem::Requirement
|
364
366
|
requirements:
|
365
367
|
- - '='
|
366
368
|
- !ruby/object:Gem::Version
|
367
|
-
version: 0.18.0.
|
369
|
+
version: 0.18.0.5
|
368
370
|
type: :development
|
369
371
|
prerelease: false
|
370
372
|
version_requirements: !ruby/object:Gem::Requirement
|
371
373
|
requirements:
|
372
374
|
- - '='
|
373
375
|
- !ruby/object:Gem::Version
|
374
|
-
version: 0.18.0.
|
376
|
+
version: 0.18.0.5
|
375
377
|
description:
|
376
378
|
email:
|
377
379
|
- myron@squareup.com
|