Referring to the documentation https://neo4j.com/docs/cypher-manual/3.5/schema/index/#schema-index-fulltext-search-query
Consider below full text search query
CALL db.index.fulltext.queryNodes("titlesAndDescriptions", 'Full Metal Jacket') YIELD node, score RETURN node
How do I get which property matches the search keyword keyword. (i.e in above example 'Full Metal Jacket' found in title or description ?)