I'm exploring using NestJS with Deno. I don't need a full application because I mainly want to use the GraphQL schema builder decorators and IoC. A full app would require an HTTP adapter for Web standard Request/Response objects but a simpler approach for me I think would be to use NestFactory to create an application context and handle the network layer myself.
I have it working locally but it requires using autoSchemaFile in a call to graphQlAdapter.generateSchema(). Locally this is fine but in Deno Deploy or anywhere else where I can't write to the file system this doesn't work and if I remove the autoSchemaFile option property then generateSchema() resolves to null. 😞
I think some init logic isn't properly getting called for GraphQLModule when used in an app context rather than a full app. Is there some additional init call I should be making? Is there some alternative module to GraphQLModule that I can use for just creating the executable schema from my resolvers? A guide on how to use @nestjs/graphql in an app context may be all I need (or if this isn't supported yet then I'd such can be added that be awesome 😎).