Started with Mongo

This commit is contained in:
Riccardo
2021-01-02 13:11:59 +01:00
parent 5294122f61
commit 30407cac0a
41 changed files with 33775 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
function appointments(parent, args, context) {
return context.mongo.user
.findUnique({ where: { id: parent.id } })
.appointments();
}
module.exports = {
appointments
};