hi Georg,
just for your information, is also possible to query MongoDB without third part drivers:
by JSL script you can connect your local JMP to MONGO passing trough R or Python Interface.
i tested this funcionality with R and it works well.
// here a query sample with R 3.5 //
R Init( );
R Submit( "
library(mongolite)
mquery <- mongo(collection = \!"ProbeWafer\!", db = \!"DbProbe\!", url = \!"mongodb://27017/DbaProbe\!")
DataFrame <- mquery$find ('{\!"DATETIME\!": { \!"$gte\!" : { \!"$date\!" : \!"2018-11-30T23:30:00Z\!" }, \!"$lt\!" : { \!"$date\!": \!"2018-12-01T00:00:00Z\!" } }}')");
dt = R Get( DataFrame);
dt << New Data View;
dt << set name ("Mongo Table");
R Term();
// close R Session
ciao
Gianpaolo
Gianpaolo Polsinelli