Skip to content

Commit

Permalink
Update README.md (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
dvdsgl authored Nov 26, 2023
1 parent 8f4c918 commit 4fcdb68
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,11 @@ type InventoryItem = glide.RowOf<typeof inventory>;
const rows = await inventory.get();

// Query rows – Big Tables only (Business+)
const rows = await inventory.get(p => p.where("Price", ">", 100));
const rows = await inventory.get(q => q.where("Price", ">", 100));

// Add a row
const rowID = await inventory.add({
Item: "Test Item",
Description: "Test Description",
Price: 100,
Assignee: "David",
});
Expand Down

0 comments on commit 4fcdb68

Please sign in to comment.