Display follow suggestions

This commit is contained in:
Eugen Rochko 2016-10-15 12:06:30 +02:00
commit 20f581f796
8 changed files with 146 additions and 6 deletions

View file

@ -3,5 +3,8 @@ class FollowSuggestion
neo = Neography::Rest.new
account_ids = neo.execute_query('START a=node:account_index(Account={id}) MATCH (a)-[:follows]->(b)-[:follows]->(c) WHERE a <> c AND NOT (a)-[:follows]->(c) RETURN DISTINCT c.account_id', id: for_account_id)
Account.where(id: account_ids['data'].first) unless account_ids.empty?
rescue Neography::NeographyError, Excon::Error::Socket => e
Rails.logger.error e
[]
end
end