I am using the Grakn python client and I want to query for data without reasoning turned on.
client = GraknClient(uri=uri)
session = client.session(keyspace=keyspace)
tx = session.transaction().read()
Do I pass an argument in the transaction()
method?
You can turn the reasoning off for every specific query by passing
infer=False
parameter like thisCheck out the documentation http://dev.grakn.ai/docs/client-api/python#lazily-execute-a-graql-query