Add shortcut Dataset.filter()
to avoid confusion with the .query()
method
#297
Labels
Dataset.filter()
to avoid confusion with the .query()
method
#297
The requirement to call
Dataset.query().filter(field=value)
can be confusing. We can simplify this for most use cases by adding afilter()
shortcut method to the Dataset object in the case where you do not need to provide additional query parameters. This would just callself.query().filter(*args, **kwargs)
on the dataset instance.The text was updated successfully, but these errors were encountered: