Closed alexiudice closed 4 years ago
On top of the pagination PR.
Fulltext indexes with sort are created in their usual way. The searchNodes/searchRelationships procedures have been updated to use a sortBy list of sorts to apply to the query:
searchNodes/searchRelationships
sortBy
CALL db.index.fulltext.searchNodes("personIndex", "*", {sortBy: [ {property: "born", direction: "ASC"}, {property: "name", direction: "DESC"} ] }) YIELD node, score RETURN *
On top of the pagination PR.
Fulltext indexes with sort are created in their usual way. The
searchNodes/searchRelationships
procedures have been updated to use asortBy
list of sorts to apply to the query: