From 4fcdb685471919a62df344af897159e0e79e854e Mon Sep 17 00:00:00 2001 From: David Siegel Date: Sun, 26 Nov 2023 09:22:56 -0600 Subject: [PATCH] Update README.md (#33) --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 098b9d0..83e611f 100644 --- a/README.md +++ b/README.md @@ -74,12 +74,11 @@ type InventoryItem = glide.RowOf; 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", });