Hey There! Can someone advice me how can i see an ...
# orm-help
o
Hey There! Can someone advice me how can i see an actual mongo db query that is sent to the db? I use
log: ['query']
but somewhat see only this output in my cli:
Copy code
query {
     findManyStatement(where: {
       contextId: "id"
     }) {
       id
       content
     }
   }
r
@Oleg Yarin 👋 Mongo by default doesn’t allow logs on queries, so this isn’t possible at the moment.
âś… 1