Hisoka-X commented on code in PR #3697:
URL:
https://github.com/apache/incubator-seatunnel/pull/3697#discussion_r1046628474
##########
docs/en/connector-v2/source/MongoDB.md:
##########
@@ -66,6 +71,7 @@ mongodb {
uri =
"mongodb://username:[email protected]:27017/mypost?retryWrites=true&writeConcern=majority"
database = "mydatabase"
collection = "mycollection"
+ matchQuery = "{"id":3}"
Review Comment:
I'm not sure the json in hocon value can be parse normally, maybe you should
change a way, like use object
```
matchQuery = {
"id"=3
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]