This operation allows you to search based on keywords stored within the properties of nodes.
SearchBM25
SearchBM25<Type>("text", num_search_results)
N::Document { text: String created_at: I64 }
QUERY SearchKeyword(keywords: String, k: I64) => // Search for the node in the graph (returns k results) documents <- SearchV<Document>(keywords, k) RETURN documents
Was this page helpful?