Is your feature request related to a problem? Please describe.
._select is pretty verbose, especially when forced to use it with keywords like "from"
subgraph.Query.snapshots._select("from")
Describe the solution you'd like
Use the subscript helpers for a cleaner syntax (and more intuitive)!
subgraph.Query.snapshots["from"]
Implementation checklist
Is your feature request related to a problem? Please describe.
._selectis pretty verbose, especially when forced to use it with keywords like"from"Describe the solution you'd like
Use the
subscripthelpers for a cleaner syntax (and more intuitive)!Implementation checklist
__setitem__and__getitem__