You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Does it support converting SQL to MongoDB Query Language (MQL, JSON format), for example: SELECT id, name FROM users WHERE id = 1
==> { "find": "users", "filter": { "id": 1 }, "projection": { "_id": 0, "id": 1, "name": 1 } }