Selecting data
Selecting data involves building a compositional query staring with a table of collection, and repeatingly calling methods to build a complex query:
q = db['table_name'].method_1(*args_1, **kwargs_1).method_2(*args_2, **kwargs_2)....
As usual, the query is executed with:
q.execute()
Read more
📄️ MongoDB select queries
Superduper supports the pymongo query API to build select queries.
📄️ SQL select queries
In order to support as many data-backends as possible, Superduper supports the ibis query API to build SQL queries.