01 · Graph
Federated GraphQL
One query. Three domains. Tenant-safe by default.
# Federated query across catalog, inventory & service domains
query ProductDetail($id: ID!) {
product(id: $id) {
title
category # catalog domain
availability { # inventory domain
inStock
location
}
activeContracts { # service domain
sla
renewalAt
}
}
}