-
Notifications
You must be signed in to change notification settings - Fork 233
Closed
Labels
Description
Thank you for RedisGraph.
I understand that the fulltext search in RedisGraph is powered by RediSearch.
How can I get the scores (tfidf or otherwise) of the search results?
Eg.
CALL db.idx.fulltext.queryNodes('movie', 'Book') YIELD node RETURN node.title
Would it be possible to get the following?
“The Jungle Book” - score 0.8
“The Book of Life” - score 0.5
These scores would be useful for me against a threshold where I decide whether to use the node or not for further processing in my app.
ljvmiranda921 and AlrasheedA