Fix follow suggestions order
This commit is contained in:
		
							parent
							
								
									df2c0b8dad
								
							
						
					
					
						commit
						6e0b3ddb0d
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
					@ -7,8 +7,8 @@ START a=node:account_index(Account={id})
 | 
				
			||||||
MATCH (a)-[:follows]->(b)-[:follows]->(c)
 | 
					MATCH (a)-[:follows]->(b)-[:follows]->(c)
 | 
				
			||||||
WHERE a <> c
 | 
					WHERE a <> c
 | 
				
			||||||
AND NOT (a)-[:follows]->(c)
 | 
					AND NOT (a)-[:follows]->(c)
 | 
				
			||||||
RETURN DISTINCT c.account_id, c.nodeRank
 | 
					RETURN DISTINCT c.account_id, count(b), c.nodeRank
 | 
				
			||||||
ORDER BY c.nodeRank
 | 
					ORDER BY count(b) DESC, c.nodeRank DESC
 | 
				
			||||||
LIMIT {limit}
 | 
					LIMIT {limit}
 | 
				
			||||||
END
 | 
					END
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue