I am facing problem in kafka connector while sending data kafka .
when I am providing pipeline like this: “pipeline”: “[{"$match": {"operationType": {"$in": ["insert", "update", "replace"]}}}]” it is working fine.
But when i am trying to match some field from mongo document it is not working.
“pipeline”: "[{"$match": {"operationType": {"$in": ["insert", "update", "replace"]}, "fullDocument.applicationName": "user-api", "fullDocument.resultCode": "2"}}]
can someone help me out .
is anyone else also faced this kind of issue?