1Field Resolver Danger
If you query 100 users, and ask for each user's posts, GraphQL might run 1 query to get the users, and then 100 separate queries to get each user's posts. This is the infamous N+1 Database problem. You solve this in GraphQL using a tool called DataLoader, which batches the 100 queries into 1.
