devoyage-subgraph 0.0.15

Subgraph is a CLI that instantly generates a GraphQL API around Mongo, SQL, and HTTP APIs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
db = db.getSiblingDB("subgraph_mongo");

db.createUser({
  user: "subgraph_mongo",
  pwd: "subgraph_mongo",
  roles: [
    {
      role: "readWrite",
      db: "subgraph_mongo",
    },
  ],
});