Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 802 Bytes

readme.md

File metadata and controls

36 lines (27 loc) · 802 Bytes

neo4j-flask-api

install

pipenv install

cp .env.example .env
add the noe4j credentials

use

pipenv shell
export FLASK_APP=app.py
export FLASK_ENV=development
flask run

full text search

SHOW INDEXES
DROP INDEX index_name
CALL db.index.fulltext.createNodeIndex('showcase_de', ['Showcase'], ['title_de', 'description_de'], {analyzer: "german"})
CALL db.index.fulltext.listAvailableAnalyzers
CALL db.index.fulltext.queryNodes('showcase_de', 'energy')

Links for further reading: