We can search a node by index via cypher query:
START n=node:index('property:val') RETURN n;
Is there a possible reverse query which we can get the index from a node id?
So if a node is retrieved via node id, how can we retrieve all indices of the particular node as well?