added projection api for nodejs (#140)

This commit is contained in:
gsilvestrin
2023-06-03 10:34:08 -07:00
committed by GitHub
parent 41cca31f48
commit d0c47e3838
5 changed files with 66 additions and 4 deletions

View File

@@ -129,4 +129,9 @@ You can select the columns returned by the query using a select clause.
```
=== "Javascript"
Projections are not currently supported in the Javascript SDK.
```javascript
const results = await table
.search(Array(1536).fill(1.2))
.select(["id"])
.execute()
```