update method

Implementation

ClientManagerFilterBuilder<TModel> update(
  TetherModelInputBase value,
) {
  // supabase.update returns PostgrestFilterBuilder<dynamic>, which now matches _copyWithQuery
  return _copyWithQuery(
    supabase: baseSupabase.update(value.toJson()),
    // No initial driftSelect for update
    type: SqlOperationType.update,
    localQuery: ClientManagerSqlUtils.buildUpdateSql(value, tableName),
  );
}