Skip to content

Glossary

GraphQL

GraphQL is a query language and runtime for APIs that lets a client request exactly the fields it needs in a single call. A typed schema defines the available data, and the server resolves each query against it. This avoids over-fetching and under-fetching, and lets many resources be retrieved in one round trip.

Related terms