MongoDB

Introduction to GraphQL

Learn the basics of GraphQL and how it differs from REST APIs.

S

srikanthtelkalapally888@gmail.com

Introduction to GraphQL

GraphQL is a query language for APIs developed by Facebook.

Advantages

  • Fetch exactly the data you need
  • Single endpoint
  • Strongly typed schema

Example Query

query {
  users {
    id
    name
    email
  }
}

Share this article