Skip to content

Latest commit

 

History

History
23 lines (20 loc) · 288 Bytes

README.md

File metadata and controls

23 lines (20 loc) · 288 Bytes

GraphQL Bootcamp

The client sends a query to the server asking for the exact data that it needs.

Example graphql query

query {
	posts {
    id, title, published
  },
  users {
    name, email
  },
  hello,
  courseInstructor,
  me {
    name,
    email
  },
  course
}