for graph dbs!!! - Not a DB!!! - Not a library - Protocol/spec for communication between clients and data sources for servers to execute - Layer between your datasource and your client - Strongly typed - A way to describe and query/mutate your data, client side - Gives you the power on client side to decide how much/what data you need - Fetch multiple resources in one round trip/request
from '../types/MutationType'; import QueryType from '../types/QueryType'; export default new GraphQLSchema({ query: QueryType, mutation: MutationType,});