Dear all,
I am new to Neuprint so I was just playing around with the database to get a feel for it. I wanted to get a database of all neuron connections but I experienced a timeout error. Following is my code:
q = """\
MATCH (a:Neuron)-[w:ConnectsTo]->(b:Neuron)
RETURN a.bodyId, b.bodyId
"""
results = c.fetch_custom(q)
print(f"Found {len(results)} results")
results.head()
And the error msg was:
Please help me out. Thank you for your time and consideration.
Best,
Prateek