View all issuesSeptember 1, 2025
Newsletter Hero Image

GraphQL Support

Full GraphQL API generation is here. Every table automatically gets a GraphQL schema.

In This Issue
Auto-generated GraphQL schemasSubscriptions for real-time updatesGraphQL playground includedFederation support for microservices

GraphQL, Automatically

Starting today, every qqq application automatically exposes a GraphQL API alongside REST. No configuration required.

GraphQL schema auto-generation diagram
GraphQL schema auto-generation diagram

Auto-Generated Schema

Your tables become GraphQL types:

type Customer {
  id: ID!
  name: String!
  email: String!
  orders: [Order!]!
}

type Query {
  customer(id: ID!): Customer
  customers(filter: CustomerFilter): [Customer!]!
}

Real-Time Subscriptions

Subscribe to changes on any entity:

subscription {
  orderCreated {
    id
    customer { name }
    total
  }
}
Real-time subscription flow
Real-time subscription flow

GraphQL Playground

Access the interactive playground at /graphql to explore your schema, run queries, and test mutations.

Federation Ready

Building microservices? qqq's GraphQL implementation supports Apollo Federation out of the box. Combine multiple qqq services into a single unified graph.

Found this useful? Share it with your team.

q

Get the next issue delivered to your inbox.

Subscribe to Newsletter

You're receiving this because you subscribed to QRunIO updates.
Manage preferences · Privacy policy