Query constructor

Query({
  1. List<PropertyReference>? distinctOn,
  2. String? endCursor,
  3. Filter? filter,
  4. List<KindExpression>? kind,
  5. int? limit,
  6. int? offset,
  7. List<PropertyOrder>? order,
  8. List<Projection>? projection,
  9. String? startCursor,
})

Implementation

Query({
  this.distinctOn,
  this.endCursor,
  this.filter,
  this.kind,
  this.limit,
  this.offset,
  this.order,
  this.projection,
  this.startCursor,
});