Welcome to the GraphQL API documentation! This guide provides essential information for interacting with our API using GraphQL queries, mutations, and subscriptions. 🡒
📚 Overview
GraphQL is a query language for APIs that enables clients to request exactly the data they need. It also provides a runtime for executing these queries and formatting results.
🔧 Key Features
- Flexible Data Fetching 🚀
- Strongly Typed Schema 📋
- Real-time Updates via Subscriptions ⏱️
- Introspection Capabilities 🔍
🧾 API Endpoints
Method | Endpoint | Description |
---|---|---|
GET | /graphql |
Execute queries |
POST | /graphql |
Perform mutations |
SUBSCRIBE | /graphql |
Manage subscriptions |
📌 Example Request
query {
hello
}
⚠️ Always use the
/graphql
endpoint for all GraphQL operations. For more details, check our GraphQL Tutorial 📘.