I am building a GraphQL server using apollo-server. I need to add few routes to handle OAuth2 redirects/callbacks. How can I add traditional endpoint to the apollo-server?
Note, I am not using apollo-server as a middleware on existing Express or Hapi server. I prefer to use apollo-server standalone and not introduce extra server just for handling one addition route. Also, I am using Nexus to write my GraphQL schema.
Is there any way I can achieve this?