diff --git a/composer.json b/composer.json index 325eefd97fd..d0103d77595 100644 --- a/composer.json +++ b/composer.json @@ -69,7 +69,8 @@ "Add relationship to flagged entities when Flagging is base table": "https://www.drupal.org/files/issues/2021-11-08/2723703-76.patch" }, "drupal/graphql": { - "Issue #3191622: Remove leaked cache metadata check until Open Social properly avoids leaking cache metadata in entity query connections": "https://www.drupal.org/files/issues/2022-11-01/3191622-Implement-cache-metadata-for-ConnectionQueryHelperInterface-3.patch" + "Issue #3191622: Remove leaked cache metadata check until Open Social properly avoids leaking cache metadata in entity query connections": "https://www.drupal.org/files/issues/2022-11-01/3191622-Implement-cache-metadata-for-ConnectionQueryHelperInterface-3.patch", + "Issue #3488581: example/composable_extension.base.graphqls loaded in schema when module disabled" : "https://git.drupalcode.org/project/graphql/-/merge_requests/14/diffs.patch" }, "drupal/group": { "Missing config schema for condition.plugin.group_type": "https://www.drupal.org/files/issues/2018-12-14/group-group_type_condition_plugin_config_schema-3020554-2.patch", diff --git a/modules/custom/social_graphql/graphql/open_social.graphqls b/modules/custom/social_graphql/graphql/open_social.graphqls index 00ac5b00246..72be8695d30 100644 --- a/modules/custom/social_graphql/graphql/open_social.graphqls +++ b/modules/custom/social_graphql/graphql/open_social.graphqls @@ -37,7 +37,12 @@ API from which all subscriptions must start. A real-time process must be implemented and deployed to support subscriptions. """ -type Subscription +type Subscription { + """ + Type Subscription can not be empty, so we add an empty field. + """ + _empty: String +} ################################################################################ # Basic Types # @@ -311,7 +316,12 @@ interface Connection { """ The base mutation type. """ -type Mutation +type Mutation { + """ + Type Mutation can not be empty, so we add an empty field. + """ + _empty: String +} """ A violation indicates an error in the GraphQL query or other incorrect