Extracting data from MarkLogic db using Java Client API when fetching one document may be dependent upon other documents
问题 I have started working on the MarkLogic database using the Java Client API. I have two use cases for me :- Extract all the documents which are in the same collection and which are in the form of JSON where a particular date is less than or equal to a certain date. JSON is in the form { "id" : "12345" "date" : "2012-12-12", "messageType" : "dummy_type", .... } I am able to do this using the below code :- val queryMgr = client.newQueryManager(); var rawHandle: StringHandle = new StringHandle