Skip to content

Latest commit

 

History

History
40 lines (28 loc) · 845 Bytes

index.rst

File metadata and controls

40 lines (28 loc) · 845 Bytes

Queries

The Query object

Queries are created by instantiating a Query object and passing it to the .execute() method of an API client. The Query class takes a single parameter, the name of the schema to be queried, and provides numerous methods to filter, refine, and aggregate your results.

from montage import Query, Field
query = Query('movies').count()
client.execute(query=query)
import {Query, Field} from 'montagedata';
query = new Query('movies').count()
client.execute(query=query)

Query methods

select transform manipulate aggregate geospatial