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
We should create a class that helps with creating queries as expected by the query argument in Dataset.create() (see POST /api/dataset).
This would, at least, serialize to dict (i.e. DatasetQuery(type='query', 'query'={'database': 1, ...}, ...) -> {'type': 'query', 'query': {'database': 1, ...}, ...}), but ideally help with building valid MBQL.
The text was updated successfully, but these errors were encountered:
We should create a class that helps with creating queries as expected by the
query
argument inDataset.create()
(see POST /api/dataset).This would, at least, serialize to
dict
(i.e.DatasetQuery(type='query', 'query'={'database': 1, ...}, ...)
->{'type': 'query', 'query': {'database': 1, ...}, ...}
), but ideally help with building valid MBQL.The text was updated successfully, but these errors were encountered: