Perhaps its simply a lacking of mongodb technical knowledge, but I dont know where to start to convert a standard mongo db query in to a JSON format the native query console requires.
The reason I need to use a native query is because reading JSON value pairs inside a field is not currently supported in metabase (from googling around).
At the moment I have a collection named 'vulnerabilities' and I want to extract results based on the
contents of a single field which contains JSON.
This raw mongodb query works:
db.vulnerabilities.find({ ‘Details.vulnType’: /Web Application/ })
How do I turn that request in to a format metabase understands in the native query console?
Cheers!