Open
Description
In the MyriaRelation class, there should be support for indexing. Indexing into a MyriaRelation is part of the example iPython notebook and seems like a very useful feature. Instead I see the following:
TypeError: 'MyriaRelation' object does not support indexing
for the example on the demo server
dataset = connection.datasets()[0]
MyriaRelation(dataset['relationKey'])[-1]
Removing the [-1]
runs fine.