I am using java couchbase sdk in my application. I am using AsyncMutateInBuilder for doing mutations. Now when i upsert a mutation or try to remove a path which doesn't exist in the document, I get PathNotFoundException which makes sense.
While upserting the mutation, I am using SubDocOptionsBuilder to create a path if it doesn't exist before upserting a mutation. This is how it looks like-
mutator.upsert(this.path, this.data, new SubdocOptionsBuilder().createPath(Boolean.TRUE))
This works perfectly fine and. Now I want to achieve the same results while removing a path from document. If the path doesn't exist, I don't want to end up with PathNotFoundException. I would just like to move on. Is there a way i can achieve this?