neo4j-core 5.1.0.rc.2 → 5.1.0.rc.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/neo4j-core/query.rb +1 -1
- data/lib/neo4j-core/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1fa6e58a631fd5216cb95ee1dca33d669319c11a
|
4
|
+
data.tar.gz: c338b5f870060e01b55f244ac5926c1b04ad76e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 616be6bd796ccfb17b78f19a1072a54f24e23c09dac380aa004fc568b5da0aa5d69bfe5f79bd5568c9e84822a1fb9c40099096479ddcc455bbc3182058d1af1b
|
7
|
+
data.tar.gz: 76881a1e2a7b57faaceed8083939b67ca063d3e78d5515b62331d245941d1032b69220376588c88cd7ed56f80f001c2df2fb7cac6f3c2d1e3de4ce7f32a7f435
|
data/lib/neo4j-core/query.rb
CHANGED
@@ -182,7 +182,7 @@ module Neo4j
|
|
182
182
|
def response
|
183
183
|
return @response if @response
|
184
184
|
cypher = to_cypher
|
185
|
-
pretty_cypher = to_cypher(pretty: true)
|
185
|
+
pretty_cypher = to_cypher(pretty: true) if self.class.pretty_cypher
|
186
186
|
|
187
187
|
@response = @session._query(cypher, merge_params, context: @options[:context], pretty_cypher: pretty_cypher)
|
188
188
|
|
data/lib/neo4j-core/version.rb
CHANGED