This repository has been archived on 2026-01-31. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
calendar-demo/server/src/resolvers/User.js
2021-01-02 13:11:59 +01:00

10 lines
182 B
JavaScript

function appointments(parent, args, context) {
return context.mongo.user
.findUnique({ where: { id: parent.id } })
.appointments();
}
module.exports = {
appointments
};