searchStream method

Stream<List<Map<String, dynamic>>> searchStream({
  1. required String table,
  2. String? text,
  3. List<double>? vector,
  4. dynamic where,
  5. int? offset,
  6. int? limit,
  7. List<String>? select,
  8. List<String>? namespace,
})

Implementation

Stream<List<Map<String, dynamic>>> searchStream({
  required String table,
  String? text,
  List<double>? vector,
  dynamic where,
  int? offset,
  int? limit,
  List<String>? select,
  List<String>? namespace,
}) {
  return _streamRows("search", {
    "kind": "start",
    "table": table,
    "text": text,
    "vector": vector,
    "text_columns": null,
    "where": _whereClause(where),
    "offset": offset,
    "limit": limit,
    "select": select,
    "namespace": namespace,
  });
}