You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current signature doesn't allow this, as it assumes *args as tags and **kwargs as query. The get api signature can be changed as below to support this feature
defget(form_pk, datum_id=None, tags=None, query=None, start=None, limit=None)
...
# API Calls can beget(form_pk, datum_id) orget(form_pk, tags=[tag1, tag2], query={"foo": "bar"}, start=20, limit=10)
Support start and limit parameters in
client.data.get
to use paginated results as mentioned in https://ona.io/api/v1/dataThe text was updated successfully, but these errors were encountered: