Return WHERE clause predicates for a given list() config, filter, cursor.
This method returns a tuple of a string and a tuple of values. The string is the parameterized WHERE clause predicate (including the WHERE keyword): "WHERE column1 = $1 AND column2 IS $2". The list of values contains the values for each of the corresponding parameters.
_searchWhere(
config: RunnableConfig<Record<string, any>>,
filter: Record<string, unknown>,
before: RunnableConfig<Record<string, any>>
): [string, unknown[]]| Name | Type | Description |
|---|---|---|
config | RunnableConfig<Record<string, any>> | |
filter | Record<string, unknown> | |
before | RunnableConfig<Record<string, any>> |