mirror of
https://github.com/vale981/apollo-server
synced 2025-03-10 21:16:39 -04:00
19 lines
737 B
Markdown
19 lines
737 B
Markdown
---
|
|
title: Organization
|
|
description: Scaling your Apollo Server from a single file to your entire team
|
|
---
|
|
|
|
## Prerequisites
|
|
|
|
* Understanding of GraphQL types including queries, and mutations
|
|
|
|
## Overview
|
|
|
|
The most simply GraphQL schema may only
|
|
> (Evans) think this might not be necessary, or could be put in the best-practices section
|
|
> (Jesse) Agree++ with the above ^
|
|
|
|
* First question? Single file or muliple > start with a single file and then break it up into multiple files by real world category when things get too large
|
|
* we'll cover how to do this in the [schema stitching section]()
|
|
* Place your Queries and mutations next to each other, often at the top or bottom of your schema
|
|
* Move your Input types near to Mutations
|