Hi I have disabled scans in my schema.
I know that queries like those wouldn't be allowed:
g.V()
g.V().hasLabel("User")
org.apache.tinkerpop.gremlin.driver.exception.ResponseException: Could not find an index to answer query clause and graph.allow_scan is disabled:
I wonder why even those:
g.V().limit(2)
g.V().hasLabel("User").limit(2)
cause the same exception to be thrown! This is frustrating since they are bounded queries and they certainly don't cause full cassandra table scans..
Thanks