├── .deno_plugins └── deno_mongo_2970fbc7cebff869aa12ecd5b8a1e7e4.so ├── .env ├── README.md ├── server.ts └── src ├── app.ts ├── config ├── db.ts └── deps.ts ├── resolver ├── author.ts ├── index.ts └── user.ts └── schema ├── author.ts ├── date.ts ├── index.ts └── user.ts /.deno_plugins/deno_mongo_2970fbc7cebff869aa12ecd5b8a1e7e4.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhcool/deno-server-graphQL/HEAD/.deno_plugins/deno_mongo_2970fbc7cebff869aa12ecd5b8a1e7e4.so -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | #welcome text 2 | GREETING=hello world 3 | 4 | #Database Details 5 | DB_NAME=deno_demo 6 | DB_HOST_URL=mongodb://localhost:27017 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhcool/deno-server-graphQL/HEAD/README.md -------------------------------------------------------------------------------- /server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhcool/deno-server-graphQL/HEAD/server.ts -------------------------------------------------------------------------------- /src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhcool/deno-server-graphQL/HEAD/src/app.ts -------------------------------------------------------------------------------- /src/config/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhcool/deno-server-graphQL/HEAD/src/config/db.ts -------------------------------------------------------------------------------- /src/config/deps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhcool/deno-server-graphQL/HEAD/src/config/deps.ts -------------------------------------------------------------------------------- /src/resolver/author.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhcool/deno-server-graphQL/HEAD/src/resolver/author.ts -------------------------------------------------------------------------------- /src/resolver/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhcool/deno-server-graphQL/HEAD/src/resolver/index.ts -------------------------------------------------------------------------------- /src/resolver/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhcool/deno-server-graphQL/HEAD/src/resolver/user.ts -------------------------------------------------------------------------------- /src/schema/author.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhcool/deno-server-graphQL/HEAD/src/schema/author.ts -------------------------------------------------------------------------------- /src/schema/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhcool/deno-server-graphQL/HEAD/src/schema/date.ts -------------------------------------------------------------------------------- /src/schema/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhcool/deno-server-graphQL/HEAD/src/schema/index.ts -------------------------------------------------------------------------------- /src/schema/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhcool/deno-server-graphQL/HEAD/src/schema/user.ts --------------------------------------------------------------------------------