lib/neo4j/active_rel/query.rb in neo4j-3.0.4 vs lib/neo4j/active_rel/query.rb in neo4j-4.0.0.rc.1
- old
+ new
@@ -24,13 +24,9 @@
# MyRelClass.where('r1.grade > r1')
def where(args={})
where_query.where(where_string(args)).pluck(:r1)
end
- def array_load(ids_array)
- where_query.where("ID(r1) IN {ids_array}").params(ids_array: ids_array).pluck(:r1)
- end
-
# Performs a basic match on the relationship, returning all results.
# This is not executed lazily, it will immediately return matching objects.
def all
all_query.pluck(:r1)
end
\ No newline at end of file