neo4j 6.1.8 → 6.1.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/neo4j/active_node/query/query_proxy_methods.rb +1 -1
- data/lib/neo4j/shared/property.rb +1 -1
- data/lib/neo4j/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 679656392441ae5e6d59d86d42b7c11ea6bcfab0
|
4
|
+
data.tar.gz: 0b5ffa1eb006b9c29001591edeab99793c44d5d9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1a265480a388e338260c6ffeee67e08afc705f664af9db37a57296dc62e1e02b5492e315d963e2745265d715ed04113a0abba82b311a3c048e82e39354d1ba01
|
7
|
+
data.tar.gz: f9ba0b1c3ac2ca0b8d5b68e496a5c50d11196e7dedf35824fed2fac516f1f2d341fd92aebc14753c1755afbf8a319fb917c072ad7f5ebcc29055cbf75f73e145
|
@@ -93,7 +93,7 @@ module Neo4j
|
|
93
93
|
"#{var}.#{association_id_key} = {other_node_id}"
|
94
94
|
end
|
95
95
|
node_id = other.respond_to?(:neo_id) ? other.neo_id : other
|
96
|
-
self.where(where_filter).params(other_node_id: node_id).query.return("count(#{var}) as count").first.count > 0
|
96
|
+
self.where(where_filter).params(other_node_id: node_id).query.reorder.return("count(#{var}) as count").first.count > 0
|
97
97
|
end
|
98
98
|
end
|
99
99
|
|
@@ -27,7 +27,7 @@ module Neo4j::Shared
|
|
27
27
|
# It calls an init method in active_attr that has a very negative impact on performance.
|
28
28
|
def initialize(attributes = nil)
|
29
29
|
attributes = process_attributes(attributes)
|
30
|
-
@relationship_props = self.class.extract_association_attributes!(attributes)
|
30
|
+
@relationship_props = {} # self.class.extract_association_attributes!(attributes)
|
31
31
|
modded_attributes = inject_defaults!(attributes)
|
32
32
|
validate_attributes!(modded_attributes)
|
33
33
|
writer_method_props = extract_writer_methods!(modded_attributes)
|
data/lib/neo4j/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: neo4j
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 6.1.
|
4
|
+
version: 6.1.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andreas Ronge, Brian Underwood, Chris Grigg
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-03-
|
11
|
+
date: 2016-03-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: orm_adapter
|