Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marcjulian/nestjs-graphql-zeit-now
Nest Graphql deployed to Zeit Now
https://github.com/marcjulian/nestjs-graphql-zeit-now
Last synced: 16 days ago
JSON representation
Nest Graphql deployed to Zeit Now
- Host: GitHub
- URL: https://github.com/marcjulian/nestjs-graphql-zeit-now
- Owner: marcjulian
- Created: 2020-02-09T14:40:48.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-24T01:20:59.000Z (almost 2 years ago)
- Last Synced: 2024-11-09T15:46:40.954Z (about 2 months ago)
- Language: TypeScript
- Size: 2.41 MB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nest Graphql deployed to Zeit Now
Get started by running:
```bash
npm run now:deploy
```## Graphql
When importing `GraphQLModule` the graphql schema must be generated on-the-fly in memory otherwise it fails to boot in Zeit Now.
```typescript
GraphQLModule.forRoot({
debug: true,
playground: true,
autoSchemaFile: true
}),
```You can open the Graphql Playground, however, the schema is not fetched. Graphql queries are still correctly processed by nest.