Dear all,
I am running the following code which gives me 376172 results:
q = """\
MATCH (a:Segment{`GNG`:true})
RETURN a.bodyId
"""
cng = c.fetch_custom(q)
print(f"Found {len(cng)} results")
cng.head()
The user guide says that Segment label is used to query ALL neuron nodes. So, what I don't understand is that how can there be so many neurons. GNG should be having around 483 neurons as per literature. I can't seem to figure out what is wrong with my understanding. This is true for any other brain region as well. There aren't even these many neurons in the entire fly brain.
Thanking you,
Prateek