Full-Text Search in Neo4j
Create and query full-text indexes for case-insensitive search
In this 40-minute lab, you will learn
Searching text in a database sounds straightforward until you try it. Exact property lookups work when you know the precise value, but users rarely search that way. They type partial words, misspell names, and expect results regardless of capitalization.
In this lab, you will create full-text indexes in Neo4j and query them using Lucene syntax. By the end, you will have built a movie search feature that finds films by title and description, handles fuzzy and wildcard queries, and enriches the results with cast and genre information from the graph.
You will work with the movies dataset —a graph of movies, actors, and directors connected by ACTED_IN and DIRECTED relationships.
Full-text indexes
Create full-text indexes on node properties for efficient text search.
Search operators
Use wildcards, fuzzy matching, and boolean operators to find results.
Relevance scoring
Understand what the relevance score means and use it to filter and rank search results.
Posts from the GraphAcademy blog.
Writing Cypher Queries That Don't Lose Your Data
The query trap that hides your newest data, and the query shape that brings it back.
SQL to Cypher - 10 Queries You Already Know
You already know how to write these queries. This article shows you what they look like when the joins go away.
TIL: Cypher has a format() function for dates and times
A deprecation warning taught me that Cypher now formats dates, times, and durations natively. No APOC required.