Fix: Duplicate example in Vector Databases documentation (#2562) (#2563)

Signed-off-by: yoobin_mion <113106136+yybmion@users.noreply.github.com>
This commit is contained in:
yoobin_mion
2025-04-01 18:55:11 +09:00
committed by GitHub
parent 63891544c1
commit 77e87ccb39

View File

@@ -389,7 +389,7 @@ Consider the following example:
[source,java]
----
Expression exp = b.and(b.eq("genre", "drama"), b.gte("year", 2020)).build();
Expression exp = b.and(b.in("genre", "drama", "documentary"), b.not(b.lt("year", 2020))).build();
----
== Deleting Documents from Vector Store