/

1.31.0


This is a feature release, which introduces the following language changes

Specifying projections on nested collections

A TaxiQL projection can now include specific projections for nested collections.

findAll { Transaction[] } as {
   items : TransactionItem -> {
      sku : ProductSku
      size : ProductSize
   }[]
}[]

See projecting nested collections for more details

Edit on GitLab