feat(node): add where method to query builder (#183)

Closes #181
This commit is contained in:
gsilvestrin
2023-06-14 10:54:43 -07:00
committed by GitHub
parent 6b5c046c3b
commit f65d85efcc
2 changed files with 13 additions and 4 deletions

View File

@@ -293,6 +293,8 @@ export class Query<T = number[]> {
return this
}
where = this.filter
/** Return only the specified columns.
*
* @param value Only select the specified columns. If not specified, all columns will be returned.