From 1c8e1d883f11d45a096b97e1f5cf492860058317 Mon Sep 17 00:00:00 2001 From: Bart Venter <72999113+bartventer@users.noreply.github.com> Date: Sun, 14 Jan 2024 09:36:00 +0200 Subject: [PATCH] docstore/all: update Filter.Op comments for new in/not-in operators --- docstore/driver/driver.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docstore/driver/driver.go b/docstore/driver/driver.go index ce2ee9106d..923e246c36 100644 --- a/docstore/driver/driver.go +++ b/docstore/driver/driver.go @@ -214,7 +214,7 @@ type Query struct { // TODO(#1762): support comparison of other types. type Filter struct { FieldPath []string // the field path to filter - Op string // the operation, supports =, >, >=, <, <= + Op string // the operation, supports `=`, `>`, `>=`, `<`, `<=`, `in`, `not-in` Value interface{} // the value to compare using the operation }