Not getting proper response from the Chatbot

{"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?

Rasa version: 2.0.3

Rasa SDK version: 2.0.0

Rasa X version: None

Python version: 3.6

Operating system : Ubuntu 20.04 (Linux-5.4.0-52-generic-x86_64-with-glibc2.29)

Hi @beginner,

Could you please give more details on how you have integrated Rasa and Neo4j?

Also, can you confirm that the expected data is not in neo4j, rather than the query just not behaving as expected?

@jjuzl integrated Neo4j using:

from neo4j import GraphDatabase
driver = GraphDatabase.driver("neo4j://localhost:7687", auth=("neo4j","password"))

using the default database

Could you please show me where and how you are putting data into Neo4j?