GraphQL Module
The GraphQL module adds a fully-featured GraphQL API layer to your Vorte application with automatic schema generation from SQLAlchemy models, an interactive playground, WebSocket subscriptions, and structured resolver patterns.
Configuration
Auto-Schema Generation
When auto_schema is enabled, Vorte inspects your SQLAlchemy models and generates GraphQL types, queries, and mutations automatically.
Custom Resolvers
Interactive Playground
The built-in GraphQL playground provides an interactive editor with schema exploration, query history, and real-time validation. Access it at the configured /graphql path in your browser.
Subscriptions
Real-time data via WebSocket subscriptions. Clients receive updates when data changes without polling.
Client-side subscription example: