Runs an aggregation query. Rather than producing Document results like Firestore.RunQuery, this API allows running an aggregation to produce a series of AggregationResult server-side. High-Level Example: -- Return the number of documents in table given a filter. SELECT COUNT(*) FROM ( SELECT * FROM k where a = true );

Scopes

You will need authorization for at least one of the following scopes to make a valid call:

  • https://www.googleapis.com/auth/cloud-platform
  • https://www.googleapis.com/auth/datastore

If unset, the scope for this method defaults to https://www.googleapis.com/auth/cloud-platform. You can set the scope for this method like this: firestore1 --scope <scope> projects databases-documents-run-aggregation-query ...

Required Scalar Argument

  • <parent> (string)
    • Required. The parent resource name. In the format: projects/{project_id}/databases/{database_id}/documents or projects/{project_id}/databases/{database_id}/documents/{document_path}. For example: projects/my-project/databases/my-database/documents or projects/my-project/databases/my-database/documents/chatrooms/my-chatroom

Required Request Value

The request value is a data-structure with various fields. Each field may be a simple scalar or another data-structure. In the latter case it is advised to set the field-cursor to the data-structure's field to specify values more concisely.

For example, a structure like this:

RunAggregationQueryRequest:
  new-transaction:
    read-only:
      read-time: string
    read-write:
      retry-transaction: string
  read-time: string
  structured-aggregation-query:
    structured-query:
      end-at:
        before: boolean
      limit: integer
      offset: integer
      start-at:
        before: boolean
      where:
        composite-filter:
          op: string
        field-filter:
          field:
            field-path: string
          op: string
          value:
            boolean-value: boolean
            bytes-value: string
            double-value: number
            geo-point-value:
              latitude: number
              longitude: number
            integer-value: string
            null-value: string
            reference-value: string
            string-value: string
            timestamp-value: string
        unary-filter:
          field:
            field-path: string
          op: string
  transaction: string

can be set completely with the following arguments which are assumed to be executed in the given order. Note how the cursor position is adjusted to the respective structures, allowing simple field names to be used most of the time.

  • -r .new-transaction.read-only read-time=dolores

    • Reads documents at the given time. This must be a microsecond precision timestamp within the past one hour, or if Point-in-Time Recovery is enabled, can additionally be a whole minute timestamp within the past 7 days.
  • ..read-write retry-transaction=et

    • An optional transaction to retry.
  • ... read-time=sed

    • Executes the query at the given timestamp. This must be a microsecond precision timestamp within the past one hour, or if Point-in-Time Recovery is enabled, can additionally be a whole minute timestamp within the past 7 days.
  • structured-aggregation-query.structured-query.end-at before=false

    • If the position is just before or just after the given values, relative to the sort order defined by the query.
  • .. limit=7

    • The maximum number of results to return. Applies after all other constraints. Requires: * The value must be greater than or equal to zero if specified.
  • offset=21
    • The number of documents to skip before returning the first result. This applies after the constraints specified by the WHERE, START AT, & END AT but before the LIMIT clause. Requires: * The value must be greater than or equal to zero if specified.
  • start-at before=true

    • If the position is just before or just after the given values, relative to the sort order defined by the query.
  • ..where.composite-filter op=nonumy

    • The operator for combining multiple filters.
  • ..field-filter.field field-path=at

    • A reference to a field in a document. Requires: * MUST be a dot-delimited (.) string of segments, where each segment conforms to document field name limitations.
  • .. op=sadipscing

    • The operator to filter by.
  • value boolean-value=true
    • A boolean value.
  • bytes-value=sadipscing
    • A bytes value. Must not exceed 1 MiB - 89 bytes. Only the first 1,500 bytes are considered by queries.
  • double-value=0.5545353379097522
    • A double value.
  • geo-point-value latitude=0.42705567441299663
    • The latitude in degrees. It must be in the range [-90.0, +90.0].
  • longitude=0.6063928061497748

    • The longitude in degrees. It must be in the range [-180.0, +180.0].
  • .. integer-value=consetetur

    • An integer value.
  • null-value=consetetur
    • A null value.
  • reference-value=stet
    • A reference to a document. For example: projects/{project_id}/databases/{database_id}/documents/{document_path}.
  • string-value=est
    • A string value. The string, represented as UTF-8, must not exceed 1 MiB - 89 bytes. Only the first 1,500 bytes of the UTF-8 representation are considered by queries.
  • timestamp-value=aliquyam

    • A timestamp value. Precise only to microseconds. When stored, any additional precision is rounded down.
  • ...unary-filter.field field-path=elitr

    • A reference to a field in a document. Requires: * MUST be a dot-delimited (.) string of segments, where each segment conforms to document field name limitations.
  • .. op=duo

    • The unary operator to apply.
  • ..... transaction=diam

    • Run the aggregation within an already active transaction. The value here is the opaque transaction ID to execute the query in.

About Cursors

The cursor position is key to comfortably set complex nested structures. The following rules apply:

  • The cursor position is always set relative to the current one, unless the field name starts with the . character. Fields can be nested such as in -r f.s.o .
  • The cursor position is set relative to the top-level structure if it starts with ., e.g. -r .s.s
  • You can also set nested fields without setting the cursor explicitly. For example, to set a value relative to the current cursor position, you would specify -r struct.sub_struct=bar.
  • You can move the cursor one level up by using ... Each additional . moves it up one additional level. E.g. ... would go three levels up.

Optional Output Flags

The method's return value a JSON encoded structure, which will be written to standard output by default.

  • -o out
    • out specifies the destination to which to write the server's result to. It will be a JSON-encoded structure. The destination may be - to indicate standard output, or a filepath that is to contain the received bytes. If unset, it defaults to standard output.

Optional General Properties

The following properties can configure any call, and are not specific to this method.

  • -p $-xgafv=string

    • V1 error format.
  • -p access-token=string

    • OAuth access token.
  • -p alt=string

    • Data format for response.
  • -p callback=string

    • JSONP
  • -p fields=string

    • Selector specifying which fields to include in a partial response.
  • -p key=string

    • API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
  • -p oauth-token=string

    • OAuth 2.0 token for the current user.
  • -p pretty-print=boolean

    • Returns response with indentations and line breaks.
  • -p quota-user=string

    • Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.
  • -p upload-type=string

    • Legacy upload protocol for media (e.g. "media", "multipart").
  • -p upload-protocol=string

    • Upload protocol for media (e.g. "raw", "multipart").