beginner codes
Match (q:Question)-[:TAGGED]->(t:Tag{name: 'cypher'}) return max(size((q)-[:TAGGED]->()))
Match (q:Question)-[:TAGGED]->(t:Tag{name: 'cypher'}) RETURN max(apoc.node.degree(q, "TAGGED>"));
intermediate codes
match (q:Question)-[:TAGGED]->(t:Tag{name: 'perl'}) where toString(q.createdAt) contains '-04-01T' return q.title order by q.score desc limit 1
Built With
- cypher
Log in or sign up for Devpost to join the conversation.