diff --git a/CHANGELOG.md b/CHANGELOG.md index 69bf1df..ec6b146 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # CHANGELOG +## 0.4.0 (UNRELEASED) + +- Added `queries`, `mutations` and `subscriptions` APIs to `ProxySchema.add_remote_schema`, `ProxySchema.add_schema` and `copy_schema` for creating schemas that are subsets of other, larger schemas. + + ## 0.3.0 (2024-03-26) - Added `CacheSerializer`, `NoopCacheSerializer` and `JSONCacheSerializer`. Changed `CacheBackend`, `InMemoryCache`, `CloudflareCacheBackend` and `DynamoDBCacheBackend` to accept `serializer` initialization option. diff --git a/ariadne_graphql_proxy/proxy_schema.py b/ariadne_graphql_proxy/proxy_schema.py index b766489..e017cde 100644 --- a/ariadne_graphql_proxy/proxy_schema.py +++ b/ariadne_graphql_proxy/proxy_schema.py @@ -422,7 +422,6 @@ async def root_resolver( isinstance(subquery_data.get("extensions"), dict) and self.proxy_extensions[schema_id] ): - print("HERE") root_extensions[label] = subquery_data["extensions"] if root_errors or root_extensions: