@graphql-tools/delegate 9.0.0-alpha-25204a2f.0 → 9.0.0-alpha-ad6c100a.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 +1 -1
- package/typings/types.d.ts +0 -3
package/package.json
CHANGED
package/typings/types.d.ts
CHANGED
|
@@ -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> {
|