graphql-persisted_queries 1.7.0 → 1.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/rspec.yml +3 -2
- data/CHANGELOG.md +5 -0
- data/README.md +2 -0
- data/docs/skip_query_preprocessing.md +17 -0
- data/gemfiles/graphql_2_1_0.gemfile +5 -0
- data/gemfiles/graphql_2_2_5.gemfile +5 -0
- data/lib/graphql/persisted_queries/schema_patch.rb +20 -1
- data/lib/graphql/persisted_queries/version.rb +1 -1
- metadata +6 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 348a66b5ed4c013fe7c41a01a752acdca8ecf2eac99f5365ac7cc11b3a6bcd4d
|
4
|
+
data.tar.gz: 2c15c37b4f4f451d12ab946f86e7df67a393af8d897ec0ec718924520ea5ee7b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d1ec95cdd3be52b3eb1fd91eaabfffcd67642185c214272b512d0320a17e7344554ae996b0af5f43b7e9c6b69e951268ba0a34b7b0ffe850d3f0a3c38eb5d1b9
|
7
|
+
data.tar.gz: 0ed5474fe161e4f4f1dfec4582f258c33217846bd9a1a607969a9f388d56740c55cb97be0f85184f30c90df56908c7dd224eac48fc7a343d83eb9c7615ea7c71
|
data/.github/workflows/rspec.yml
CHANGED
@@ -18,13 +18,14 @@ jobs:
|
|
18
18
|
strategy:
|
19
19
|
fail-fast: false
|
20
20
|
matrix:
|
21
|
-
ruby: [2.7, '3.0', 3.1]
|
21
|
+
ruby: [2.7, '3.0', 3.1, 3.2, 3.3]
|
22
22
|
gemfile: [
|
23
23
|
"gemfiles/graphql_1_12_0.gemfile",
|
24
24
|
"gemfiles/graphql_1_12_4.gemfile",
|
25
25
|
"gemfiles/graphql_1_13_7.gemfile",
|
26
26
|
"gemfiles/graphql_1_13_16.gemfile",
|
27
|
-
"gemfiles/
|
27
|
+
"gemfiles/graphql_2_1_0.gemfile",
|
28
|
+
"gemfiles/graphql_2_2_5.gemfile",
|
28
29
|
"gemfiles/graphql_master.gemfile"
|
29
30
|
]
|
30
31
|
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,11 @@
|
|
2
2
|
|
3
3
|
## master
|
4
4
|
|
5
|
+
## 1.8.0 (2024-03-31)
|
6
|
+
|
7
|
+
- [PR#73](https://github.com/DmitryTsepelev/graphql-ruby-persisted_queries/pull/73)
|
8
|
+
Use trace_with instead of instrument for modern versions of graphql ([@DmitryTsepelev][])
|
9
|
+
|
5
10
|
## 1.7.0 (2023-02-02)
|
6
11
|
|
7
12
|
- [PR#62](https://github.com/DmitryTsepelev/graphql-ruby-persisted_queries/pull/62)
|
data/README.md
CHANGED
@@ -86,6 +86,8 @@ Since our queries are slim now, we can switch back to HTTP GET, you can find a [
|
|
86
86
|
|
87
87
|
[persisted-queries-link](https://www.apollographql.com/docs/react/api/link/persisted-queries/) uses _SHA256_ for building hashes by default. Check out this [guide](docs/hash.md) if you want to override this behavior.
|
88
88
|
|
89
|
+
It is possible to skip some parts of the query lifecycle for cases when query is persisted - read more [here](docs/skip_query_preprocessing.md).
|
90
|
+
|
89
91
|
An experimental tracing feature can be enabled by setting `tracing: true` when configuring the plugin. Read more about this feature in the [Tracing guide](docs/tracing.md).
|
90
92
|
|
91
93
|
> 📖 Read more about the gem internals: [Persisted queries in GraphQL:
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# Skipping some preprocessing steps
|
2
|
+
|
3
|
+
It does not make much sense to revalidate persisted query—we did it earlier, so it can be disabled in the `#execute` call:
|
4
|
+
|
5
|
+
```ruby
|
6
|
+
GraphqlSchema.execute(
|
7
|
+
params[:query],
|
8
|
+
variables: ensure_hash(params[:variables]),
|
9
|
+
context: {
|
10
|
+
extensions: ensure_hash(params[:extensions])
|
11
|
+
},
|
12
|
+
operation_name: params[:operationName],
|
13
|
+
validate: params[:query].present?
|
14
|
+
)
|
15
|
+
```
|
16
|
+
|
17
|
+
Moreover, some analyzers can be disabled as well: in order to do that just pass the same check `params[:query].present?` to the context and then add early exit to your analyzers based on this flag.
|
@@ -15,12 +15,31 @@ module GraphQL
|
|
15
15
|
schema.singleton_class.prepend(SchemaPatch)
|
16
16
|
|
17
17
|
if compiled_queries
|
18
|
-
schema
|
18
|
+
configure_compiled_queries(schema)
|
19
19
|
else
|
20
20
|
schema.singleton_class.class_eval { alias_method :multiplex_original, :multiplex }
|
21
21
|
schema.singleton_class.prepend(MultiplexPatch)
|
22
22
|
end
|
23
23
|
end
|
24
|
+
|
25
|
+
private
|
26
|
+
|
27
|
+
def configure_compiled_queries(schema)
|
28
|
+
if graphql_ruby_after_2_2_5?
|
29
|
+
schema.trace_with(GraphQL::Tracing::LegacyHooksTrace)
|
30
|
+
schema.instance_exec { own_instrumenters[:query] << CompiledQueries::Instrumentation }
|
31
|
+
else
|
32
|
+
schema.instrument :query, CompiledQueries::Instrumentation
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
def graphql_ruby_after_2_2_5?
|
37
|
+
check_graphql_version "> 2.2.5"
|
38
|
+
end
|
39
|
+
|
40
|
+
def check_graphql_version(predicate)
|
41
|
+
Gem::Dependency.new("graphql", predicate).match?("graphql", GraphQL::VERSION)
|
42
|
+
end
|
24
43
|
end
|
25
44
|
|
26
45
|
# Patches GraphQL::Schema to override multiplex (not needed for compiled queries)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: graphql-persisted_queries
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- DmitryTsepelev
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-03-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: graphql
|
@@ -135,12 +135,15 @@ files:
|
|
135
135
|
- docs/error_handling.md
|
136
136
|
- docs/hash.md
|
137
137
|
- docs/http_cache.md
|
138
|
+
- docs/skip_query_preprocessing.md
|
138
139
|
- docs/tracing.md
|
139
140
|
- gemfiles/graphql_1_12_0.gemfile
|
140
141
|
- gemfiles/graphql_1_12_4.gemfile
|
141
142
|
- gemfiles/graphql_1_13_16.gemfile
|
142
143
|
- gemfiles/graphql_1_13_7.gemfile
|
143
144
|
- gemfiles/graphql_2_0_0.gemfile
|
145
|
+
- gemfiles/graphql_2_1_0.gemfile
|
146
|
+
- gemfiles/graphql_2_2_5.gemfile
|
144
147
|
- gemfiles/graphql_master.gemfile
|
145
148
|
- graphql-persisted_queries.gemspec
|
146
149
|
- lib/graphql/persisted_queries.rb
|
@@ -189,7 +192,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
189
192
|
- !ruby/object:Gem::Version
|
190
193
|
version: '0'
|
191
194
|
requirements: []
|
192
|
-
rubygems_version: 3.4.
|
195
|
+
rubygems_version: 3.4.6
|
193
196
|
signing_key:
|
194
197
|
specification_version: 4
|
195
198
|
summary: Persisted queries for graphql-ruby
|