mirror of
https://github.com/zhigang1992/apollo.git
synced 2026-05-16 16:11:21 +08:00
Add concept
This commit is contained in:
committed by
Peggy Rayzis
parent
29e84fc388
commit
23ac30a765
@@ -60,7 +60,7 @@ In the code above, we imported the `ApolloServer` class and `gql` tag from the `
|
||||
|
||||
Every GraphQL server runs a schema at its core. A schema defines types and their relationships. The specifications of the types of queries that can be run against a GraphQL server are defined in a schema. Let's design the schema for our app.
|
||||
|
||||
GraphQL schemas are at their best when they are designed around the needs of client applications. In fact, this is called **Schema First Development**, an approach for building applications with GraphQL that involves the frontend and backend teams agreeing on a schema first, which serves as a contract between the UI and the backend before any API development commences.
|
||||
GraphQL schemas are at their best when they are designed around the needs of client applications. In fact, this concept is called **Schema First Development**, an approach for building applications with GraphQL that involves the frontend and backend teams agreeing on a schema first, which serves as a contract between the UI and the backend before any API development commences.
|
||||
|
||||
In our app, we need to provide the following features:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user