From 5f94e9722ff87536fc1ccd58446850134b7f2190 Mon Sep 17 00:00:00 2001 From: Riccardo Scalco Date: Sat, 30 Oct 2021 20:16:17 +0200 Subject: [PATCH] Update 04-why-nexus.mdx Fix typo --- docs/content/010-getting-started/04-why-nexus.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/010-getting-started/04-why-nexus.mdx b/docs/content/010-getting-started/04-why-nexus.mdx index b13e87e3..3e9c206f 100644 --- a/docs/content/010-getting-started/04-why-nexus.mdx +++ b/docs/content/010-getting-started/04-why-nexus.mdx @@ -94,7 +94,7 @@ There are numerous benefits to taking a code-first approach with Nexus: When building a schema-first GraphQL API, it is common to start out by placing all type definitions and resolvers in a single file. When both the schema and the resolvers live next to one another, it's fairly straightforward to work in both at the same time. -As the application grows, however, it is most often desired to move parts of the schema into their own separate modules and files. It's at this point that working on a GraphQL API becomes a bit more tedious. With this modularization comes the need to switch back and forth between the Schema Definition Language and JavaScript/TypeScript to write the resolvers. Not only does one need to constantly switch between files, they also need to do a context switch mentally to work between the two langauges. +As the application grows, however, it is most often desired to move parts of the schema into their own separate modules and files. It's at this point that working on a GraphQL API becomes a bit more tedious. With this modularization comes the need to switch back and forth between the Schema Definition Language and JavaScript/TypeScript to write the resolvers. Not only does one need to constantly switch between files, they also need to do a context switch mentally to work between the two languages. With Nexus, our schema and its resolvers are always defined together. Nexus also allows us to write everything in a common language. This allows us to side-step the co-location/context switching issue altogether and helps us to be more productive, even as our applications grow to be quite large.