SupaStreamModifier<B extends SupaCore, R extends SupaRecord<B>> constructor

  1. @internal
const SupaStreamModifier<B extends SupaCore, R extends SupaRecord<B>>(
  1. SupaStreamModifier<B, R>? previousModifier
)

Represents a modifier that can be applied to a Supabase stream query.

Filters work on the row level. That is, they allow you to return rows that only match certain conditions without changing the shape of the rows. Modifiers are everything that don't fit that definition.

Modifiers must be specified after filters.

The response is always a stream of a list of records.

Implementation

@internal
const SupaStreamModifier(this.previousModifier);