Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
11-11-2020 01:56 AM
{"node": "Bundle", "query": "MATCH (:Bundle) RETURN COUNT(*)", "result": 0, "intent_name": "count_components"}
The above response got from the chatbot made of rasa and neo4j.
The question was :- how many bundles are inside this project
Expected response :- (bundle count) bundles are inside this project
Actual response received :- {"node": "Bundle", "query": "MATCH (:Bundle) RETURN COUNT(*)", "result": 0, "intent_name": "count_components"}
Can anyone tell me the mistake I made?
11-11-2020 05:34 AM
You may have to bind your match to a variable and count that.
MATCH (b:Bundle) RETURN count(b)
All the sessions of the conference are now available online