getPersonById: (_, { person_id }, context) =>
      new Promise((resolve, reject) => {
        context.IMDBAPI
          .getPersonById(person_id)
          .then(resolve)