I'm trying to make full text search from python code, looking for sample python code.
The query below is working in Cypher shell, how to issue such call in python code via API?
CALL db.index.fulltext.queryNodes('index_title', '"Airbus SE"') YIELD node, score RETURN node.Entity_ID, node.Entity_Name, score;
+---------------------------------------------------------------+
| node.Entity_ID | node.Entity_Name | score |
+---------------------------------------------------------------+
| "4431893" | "Airbus SE (ENXTPA:AIR)" | 9.114794731140137 |
+---------------------------------------------------------------+
- neo4j version,: neo4j Community 4.2.6 for Red Hat
- API / driver : 5.24