Skip to content
This repository was archived by the owner on Apr 3, 2024. It is now read-only.

Terminology

Erik Roberts edited this page Jan 25, 2023 · 1 revision

Method handler

In NestJS, individual HTTP endpoints are defined by methods within NestJS controllers. Individual method definitions within the NestJS controller are referred to as method handlers throughout this wiki.

Resolver

GraphQL works by having independent methods for each field that a user requests. These methods are responsible for retrieving the value that the user is requesting. Resolvers can be thought of as the method handlers in a GraphQL context. Read more on the GraphQL documentation.

Clone this wiki locally