How to make a query in different tables in the same query in MongoDB

0

Is it possible to query below in MongoDB?

The example is in MySQL:

  

SELECT COUNT (*) AS QTD FROM OPERATORS OP, GROUPS AS GR, AUTHENTICATIONS AS ATH, RESTAPI AS APIs WHERE OP.NAME = 'test' AND GR.NAME = 'group' AND ATH.LOGIN_NAME = 'testadm' AND API.NAME = 'api'

    
asked by anonymous 23.10.2018 / 22:51

0 answers