10 lines
182 B
JavaScript
10 lines
182 B
JavaScript
function appointments(parent, args, context) {
|
|
return context.mongo.user
|
|
.findUnique({ where: { id: parent.id } })
|
|
.appointments();
|
|
}
|
|
|
|
module.exports = {
|
|
appointments
|
|
};
|