cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

no changes no records

MATCH (u:User)-[:POSTS]->(t:Tweet)-[r:POLARITY]->(v:Negative)
WHERE toFloat(r.confidence) > 0.5
RETURN u.username,COUNT(t.tweet_id) AS TOTAL_COUNT
ORDER BY TOTAL_COUNT DESC;
kindly help
1 REPLY 1

The query syntax looks good. Can you provide test data that contains the match you are expecting but are not getting from the query?