GraphQL Schema - Definição do Glossário de CI/CD
Um GraphQL schema declara os types e operações que uma API GraphQL suporta, e pode passar por diff para detectar breaking changes no CI.
Um GraphQL schema define os types, queries, mutations e subscriptions que uma API GraphQL expõe, escritos na Schema Definition Language. O CI pode fazer diff de duas versões de schema para detectar breaking changes.
Como os GraphQL schemas são fortemente tipados e introspectáveis, o tooling pode comparar um schema antigo e um novo e falhar um build quando um campo é removido ou um type é restringido.
Guias relacionados
Schema Registry - CI/CD Glossary DefinitionSchema Registry: A schema registry is a central store of API or message schemas and their versions, letting p…
Breaking Change Detection - CI/CD Glossary DefinitionBreaking Change Detection: Breaking change detection compares two versions of an API schema or contract and f…
API Schema - CI/CD Glossary DefinitionAPI Schema: An API schema is a formal, machine-readable description of an API's data structures and operation…