66// GraphQL mutation operation: CheckPartialSchema
77// ====================================================
88
9- export interface CheckPartialSchema_service_validatePartialSchemaOfImplementingServiceAgainstGraph_compositionConfig {
10- __typename : "CompositionConfig " ;
9+ export interface CheckPartialSchema_service_validatePartialSchemaOfImplementingServiceAgainstGraph_compositionValidationDetails {
10+ __typename : "CompositionValidationDetails " ;
1111 /**
1212 * Hash of the composed schema
1313 */
@@ -25,11 +25,13 @@ export interface CheckPartialSchema_service_validatePartialSchemaOfImplementingS
2525}
2626
2727export interface CheckPartialSchema_service_validatePartialSchemaOfImplementingServiceAgainstGraph {
28- __typename : "CompositionResult " ;
28+ __typename : "CompositionValidationResult " ;
2929 /**
30- * The produced composition config. Will be null if there are any errors
30+ * Akin to a composition config, represents the partial schemas and implementing services that were used
31+ * in running composition. Will be null if any errors are encountered. Also may contain a schema hash if
32+ * one could be computed, which can be used for schema validation.
3133 */
32- compositionConfig : CheckPartialSchema_service_validatePartialSchemaOfImplementingServiceAgainstGraph_compositionConfig | null ;
34+ compositionValidationDetails : CheckPartialSchema_service_validatePartialSchemaOfImplementingServiceAgainstGraph_compositionValidationDetails | null ;
3335 /**
3436 * List of errors during composition. Errors mean that Apollo was unable to compose the
3537 * graph's implementing services into a GraphQL schema. This partial schema should not be
@@ -44,10 +46,6 @@ export interface CheckPartialSchema_service_validatePartialSchemaOfImplementingS
4446 * in its composition result will result in updating the composition config.
4547 */
4648 warnings : ( CheckPartialSchema_service_validatePartialSchemaOfImplementingServiceAgainstGraph_warnings | null ) [ ] ;
47- /**
48- * Whether the gateway link was updated.
49- */
50- didUpdateGateway : boolean ;
5149}
5250
5351export interface CheckPartialSchema_service {
0 commit comments