Example: Using the full-text schema index
PROFILE
CALL db.index.fulltext.queryRelationships(
'ActedInRoleIndex', $testString) YIELD relationship
WITH relationship AS rel
RETURN startNode(rel).name, endNode(rel).title, rel.roles
It says "... We see that the execution plan is doing a NodeByLabelScan which is producing a lot of rows.... "
But I don't see any NodeByLabelScan in the Profile exit.
Is this an error in the course text?
Thanks!