With the new Nexus Framework, you don't need to create your GraphQLSchema instance manually any more as was done with makeSchema or makePrismaSchema before.
So what specific steps, in my instance, do I need to implement on Apollo Server to get it to work?
My current Apollo Server (Prisma 1 implementation) files are as follows:
"nexus": "^0.26.0-next.3", "nexus-plugin-prisma": "^0.16.1", "ts-node": "^8.10.2", "typescript": "^3.9.6", "ts-node-dev": "^1.0.0-pre.50" "apollo-server-express": "^2.9.14"
So I'm following verbatum (graphql.ts/nexus.graphql) the [prisma-binding to Nexus](path (https://www.prisma.io/docs/guides/upgrade-guides/upgrade-from-prisma-1/upgrading-prisma-binding-to-nexus#3-migrate-graphql-operations)) documentation to migrate from Prisma 1 to 2, but wish to utilise my existing Apollo Server.
The Old to new Nexus documentation states:
So what specific steps, in my instance, do I need to implement on Apollo Server to get it to work?
My current Apollo Server (Prisma 1 implementation) files are as follows: