I noticed in v26 there's a handy new `ignore_not_f...
# community-help
r
I noticed in v26 there's a handy new
ignore_not_found=true
option when deleting items. I don't see a way to pass that into the Typescript client's
.delete()
call, which accepts only a document ID, or
DeleteQuery
of shape:
Copy code
DeleteQuery {
    filter_by: string;
    batch_size?: number;
}
Is there a way to manually specify query params? And/or another way?