@graphql-tools/delegate 9.0.0-alpha-1d3f1849.0 → 9.0.0-alpha-7e947dc2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphql-tools/delegate",
3
- "version": "9.0.0-alpha-1d3f1849.0",
3
+ "version": "9.0.0-alpha-7e947dc2.0",
4
4
  "description": "A set of utils for faster development of GraphQL tools",
5
5
  "sideEffects": false,
6
6
  "peerDependencies": {
@@ -100,9 +100,6 @@ export interface SubschemaConfig<K = any, V = any, C = K, TContext = Record<stri
100
100
  export interface MergedTypeConfig<K = any, V = any, TContext = Record<string, any>> extends MergedTypeEntryPoint<K, V, TContext> {
101
101
  entryPoints?: Array<MergedTypeEntryPoint>;
102
102
  fields?: Record<string, MergedFieldConfig>;
103
- computedFields?: Record<string, {
104
- selectionSet?: string;
105
- }>;
106
103
  canonical?: boolean;
107
104
  }
108
105
  export interface MergedTypeEntryPoint<K = any, V = any, TContext = Record<string, any>> extends MergedTypeResolverOptions<K, V> {