Timur M
const addUserToGroup = (root, { groupId, userId }, ctx, info) => ctx.db.mutation.updateGroup( { where: { id: groupId }, data: { users: { connect: { id: userId } } } }, info );