You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
progresses #782closes#528
#### Implementation Notes
Several deps have been added in this PR. The goal is to move quickly and iterate on our server components. None of the deps are large, even [fp-ts](https://bundlephobia.com/[email protected]).
fp-ts is exciting. It begins our journey into throw-free code!
#### User Notes
This feature will remain undocumented while we make progress on more parts around it.
This feature exposes request handlers on the server component.
```ts
import { server } from 'nexus'
server.handlers.graphql
server.handlers.playground
```
Users can use these to response to requests in a serverless environment.
```ts
import { server } from 'nexus'
export default (req, res) => {
server.handlers.graphql(req, res)
}
```
What
Why
How
The text was updated successfully, but these errors were encountered: