Du måste använda new: true
för att få det uppdaterade värdet och cast-id till mongoose objectId för att få det att fungera
Post.findOneAndUpdate(
{ 'posts.replies._id': _id },
{ $set: { 'posts.$[post].replies.$[reply].text': "something1" } },
{ arrayFilters: [{ 'post._id': postId }, { 'reply._id': _id }], new: true }
)