Cris
04/07/2025, 5:22 AMbook_ids
document A: [1, 2, 3]
document B: [1, 2]
document C: [1]
If I then filter using book_ids:=[1]
, I only want to return only Document C
since it's an exact match of [1]
If I then filter using book_ids:=[1, 2]
, I only want to return only Document B
since it's an exact match of [1, 2]
Thank you!