@gqloom/core 0.14.4 → 0.14.5
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/dist/context.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Ct as Middleware, Vt as OnlyMemoizationPayload, bn as BaseField, hn as ResolverPayload, ut as ResolvingFields } from "./index-
|
|
1
|
+
import { Ct as Middleware, Vt as OnlyMemoizationPayload, bn as BaseField, hn as ResolverPayload, ut as ResolvingFields } from "./index-DLEFTLoS.cjs";
|
|
2
2
|
import { AsyncLocalStorage } from "node:async_hooks";
|
|
3
3
|
|
|
4
4
|
//#region src/context/async-iterator.d.ts
|
package/dist/context.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Ct as Middleware, Vt as OnlyMemoizationPayload, bn as BaseField, hn as ResolverPayload, ut as ResolvingFields } from "./index-
|
|
1
|
+
import { Ct as Middleware, Vt as OnlyMemoizationPayload, bn as BaseField, hn as ResolverPayload, ut as ResolvingFields } from "./index-B3y48ybK.js";
|
|
2
2
|
import { AsyncLocalStorage } from "node:async_hooks";
|
|
3
3
|
|
|
4
4
|
//#region src/context/async-iterator.d.ts
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
import { GraphQLArgument, GraphQLArgumentConfig, GraphQLFieldConfig, GraphQLFieldConfigArgumentMap, GraphQLFieldExtensions, GraphQLFieldMap, GraphQLInputObjectType, GraphQLInputType, GraphQLInterfaceType, GraphQLInterfaceTypeConfig, GraphQLList, GraphQLNamedType, GraphQLNonNull, GraphQLNullableType, GraphQLObjectType, GraphQLObjectTypeConfig, GraphQLOutputType, GraphQLResolveInfo, GraphQLScalarType, GraphQLSchema, GraphQLSchemaConfig, GraphQLType, GraphQLUnionType } from "graphql";
|
|
2
2
|
|
|
3
|
-
//#region rolldown:runtime
|
|
4
|
-
//#endregion
|
|
5
3
|
//#region ../../node_modules/.pnpm/@standard-schema+spec@1.0.0/node_modules/@standard-schema/spec/dist/index.d.ts
|
|
6
4
|
/** The Standard Schema interface. */
|
|
7
5
|
interface StandardSchemaV1<Input = unknown, Output = Input> {
|
|
@@ -131,7 +129,7 @@ interface IChainFactory<TOutput$1 extends GraphQLSilk, TInput$1 extends GraphQLS
|
|
|
131
129
|
*/
|
|
132
130
|
interface ChainFactoryOptions extends FieldMeta {
|
|
133
131
|
/** Middleware functions to be applied to the field */
|
|
134
|
-
middlewares?: Middleware[];
|
|
132
|
+
middlewares?: Middleware[] | undefined;
|
|
135
133
|
}
|
|
136
134
|
/**
|
|
137
135
|
* Base class for all chain factories
|
|
@@ -409,8 +407,8 @@ interface FieldMeta extends GraphQLFieldOptions {
|
|
|
409
407
|
operation: "field" | "query" | "mutation" | "subscription";
|
|
410
408
|
output: GraphQLSilk;
|
|
411
409
|
input: GraphQLSilk | Record<string, GraphQLSilk> | void;
|
|
412
|
-
middlewares?: Middleware[];
|
|
413
|
-
dependencies?: string[];
|
|
410
|
+
middlewares?: Middleware[] | undefined;
|
|
411
|
+
dependencies?: string[] | undefined;
|
|
414
412
|
resolve: (...args: any) => MayPromise<any>;
|
|
415
413
|
}
|
|
416
414
|
interface BaseField {
|
|
@@ -421,11 +419,11 @@ interface Field<TParent$1 extends GraphQLSilk, TOutput$1 extends GraphQLSilk, TI
|
|
|
421
419
|
operation: "field";
|
|
422
420
|
output: TOutput$1;
|
|
423
421
|
input: TInput$1;
|
|
424
|
-
middlewares?: Middleware[];
|
|
422
|
+
middlewares?: Middleware[] | undefined;
|
|
425
423
|
dependencies?: TDependencies$1;
|
|
426
424
|
types?: {
|
|
427
425
|
parent: ReSilk<TParent$1>;
|
|
428
|
-
};
|
|
426
|
+
} | undefined;
|
|
429
427
|
resolve: (parent: StandardSchemaV1.InferOutput<NonNullable<TParent$1>>, input: InferInputO<TInput$1>, payload: ResolverPayload | void) => Promise<StandardSchemaV1.InferOutput<TOutput$1>>;
|
|
430
428
|
} & GraphQLFieldOptions;
|
|
431
429
|
}
|
|
@@ -435,7 +433,7 @@ interface Query<TOutput$1 extends GraphQLSilk, TInput$1 extends GraphQLSilk | Re
|
|
|
435
433
|
parent?: undefined;
|
|
436
434
|
output: TOutput$1;
|
|
437
435
|
input: TInput$1;
|
|
438
|
-
middlewares?: Middleware[];
|
|
436
|
+
middlewares?: Middleware[] | undefined;
|
|
439
437
|
resolve: (input: InferInputO<TInput$1>, payload: ResolverPayload | void) => Promise<StandardSchemaV1.InferOutput<TOutput$1>>;
|
|
440
438
|
} & GraphQLFieldOptions;
|
|
441
439
|
}
|
|
@@ -445,7 +443,7 @@ interface Mutation<TOutput$1 extends GraphQLSilk, TInput$1 extends GraphQLSilk |
|
|
|
445
443
|
parent?: undefined;
|
|
446
444
|
output: TOutput$1;
|
|
447
445
|
input: TInput$1;
|
|
448
|
-
middlewares?: Middleware[];
|
|
446
|
+
middlewares?: Middleware[] | undefined;
|
|
449
447
|
resolve: (input: InferInputO<TInput$1>, payload: ResolverPayload | void) => Promise<StandardSchemaV1.InferOutput<TOutput$1>>;
|
|
450
448
|
} & GraphQLFieldOptions;
|
|
451
449
|
}
|
|
@@ -455,10 +453,10 @@ interface Subscription<TOutput$1 extends GraphQLSilk, TInput$1 extends GraphQLSi
|
|
|
455
453
|
parent?: undefined;
|
|
456
454
|
output: TOutput$1;
|
|
457
455
|
input: TInput$1;
|
|
458
|
-
middlewares?: Middleware[];
|
|
459
|
-
types?: {
|
|
456
|
+
middlewares?: Middleware[] | undefined;
|
|
457
|
+
types?: ({
|
|
460
458
|
value: TValue;
|
|
461
|
-
} & GraphQLFieldOptions;
|
|
459
|
+
} & GraphQLFieldOptions) | undefined;
|
|
462
460
|
resolve: (value: TValue, input: InferInputO<TInput$1>, payload: ResolverPayload | void) => MayPromise<StandardSchemaV1.InferOutput<TOutput$1>>;
|
|
463
461
|
subscribe: (input: InferInputO<TInput$1>, payload: ResolverPayload | void) => MayPromise<AsyncIterator<TValue>>;
|
|
464
462
|
} & GraphQLFieldOptions;
|
|
@@ -467,8 +465,8 @@ interface Resolver {
|
|
|
467
465
|
readonly "~meta": {
|
|
468
466
|
[IS_RESOLVER]: true;
|
|
469
467
|
fields: Record<string, BaseField | typeof FIELD_HIDDEN>;
|
|
470
|
-
options?: ResolverOptionsWithExtensions<any
|
|
471
|
-
parent?: GraphQLSilk;
|
|
468
|
+
options?: ResolverOptionsWithExtensions<any> | undefined;
|
|
469
|
+
parent?: GraphQLSilk | undefined;
|
|
472
470
|
};
|
|
473
471
|
}
|
|
474
472
|
type Operation = Query<GraphQLSilk, GraphQLSilk | Record<string, GraphQLSilk> | void> | Mutation<GraphQLSilk, GraphQLSilk | Record<string, GraphQLSilk> | void> | Subscription<GraphQLSilk, GraphQLSilk | Record<string, GraphQLSilk> | void, any>;
|
|
@@ -487,11 +485,11 @@ interface GraphQLSilk<TOutput$1 = any, TInput$1 = any> extends StandardSchemaV1<
|
|
|
487
485
|
[GET_GRAPHQL_ARGUMENT_CONFIG]?: MayGetter<Omit<GraphQLArgumentConfig, "type" | "astNode"> | undefined>;
|
|
488
486
|
}
|
|
489
487
|
interface ResolverOptions<TField extends FieldOrOperation = FieldOrOperation> {
|
|
490
|
-
middlewares?: Middleware<TField>[];
|
|
488
|
+
middlewares?: Middleware<TField>[] | undefined;
|
|
491
489
|
}
|
|
492
490
|
interface ResolverOptionsWithExtensions<TField extends FieldOrOperation = FieldOrOperation> extends ResolverOptions<TField>, Pick<GraphQLObjectTypeConfig<any, any>, "extensions"> {}
|
|
493
491
|
interface ResolverOptionsWithParent<TField extends FieldOrOperation = FieldOrOperation> extends ResolverOptionsWithExtensions<TField> {
|
|
494
|
-
parent?: TField extends Field<infer TParent, any, any, any> ? TParent : undefined;
|
|
492
|
+
parent?: (TField extends Field<infer TParent, any, any, any> ? TParent : undefined) | undefined;
|
|
495
493
|
}
|
|
496
494
|
interface ResolvingOptions extends Pick<ResolverOptions, "middlewares"> {
|
|
497
495
|
payload: ResolverPayload | undefined;
|
|
@@ -505,14 +503,14 @@ type InferFieldOutput<TField extends BaseField> = TField["~meta"]["output"];
|
|
|
505
503
|
* Options for creating a GraphQL Query.
|
|
506
504
|
*/
|
|
507
505
|
interface QueryOptions<TOutput$1 extends GraphQLSilk, TInput$1 extends GraphQLSilk | Record<string, GraphQLSilk> | void = void> extends ResolverOptions<Query<TOutput$1, TInput$1>>, GraphQLFieldOptions {
|
|
508
|
-
input?: TInput$1;
|
|
506
|
+
input?: TInput$1 | undefined;
|
|
509
507
|
resolve: (input: InferInputO<TInput$1>, payload: ResolverPayload | undefined) => MayPromise<StandardSchemaV1.InferOutput<TOutput$1>>;
|
|
510
508
|
}
|
|
511
509
|
/**
|
|
512
510
|
* Options for creating a GraphQL Mutation.
|
|
513
511
|
*/
|
|
514
512
|
interface MutationOptions<TOutput$1 extends GraphQLSilk, TInput$1 extends GraphQLSilk | Record<string, GraphQLSilk> | undefined = undefined> extends ResolverOptions<Mutation<TOutput$1, TInput$1>>, GraphQLFieldOptions {
|
|
515
|
-
input?: TInput$1;
|
|
513
|
+
input?: TInput$1 | undefined;
|
|
516
514
|
resolve: (input: InferInputO<TInput$1>, payload: ResolverPayload | undefined) => MayPromise<StandardSchemaV1.InferOutput<TOutput$1>>;
|
|
517
515
|
}
|
|
518
516
|
/**
|
|
@@ -540,8 +538,8 @@ interface MutationFactoryWithChain extends MutationFactory, MutationChainFactory
|
|
|
540
538
|
* Options for External Filed of existing GraphQL Object.
|
|
541
539
|
*/
|
|
542
540
|
interface FieldOptions<TParent$1 extends GraphQLSilk, TOutput$1 extends GraphQLSilk, TInput$1 extends GraphQLSilk | Record<string, GraphQLSilk> | void = void, TDependencies$1 extends string[] | undefined = undefined> extends ResolverOptions<Field<TParent$1, TOutput$1, TInput$1, TDependencies$1>>, GraphQLFieldOptions {
|
|
543
|
-
input?: TInput$1;
|
|
544
|
-
dependencies?: TDependencies$1;
|
|
541
|
+
input?: TInput$1 | undefined;
|
|
542
|
+
dependencies?: TDependencies$1 | undefined;
|
|
545
543
|
resolve: (parent: TDependencies$1 extends string[] ? RequireKeys<NonNullable<StandardSchemaV1.InferOutput<TParent$1>>, TDependencies$1[number]> : NonNullable<StandardSchemaV1.InferOutput<TParent$1>>, input: InferInputO<TInput$1>, payload: ResolverPayload | undefined) => MayPromise<StandardSchemaV1.InferOutput<TOutput$1>>;
|
|
546
544
|
}
|
|
547
545
|
/**
|
|
@@ -570,9 +568,9 @@ interface FieldFactoryWithUtils extends FieldFactory, FieldChainFactory<never, u
|
|
|
570
568
|
* Options for creating a GraphQL Subscription.
|
|
571
569
|
*/
|
|
572
570
|
interface SubscriptionOptions<TOutput$1 extends GraphQLSilk, TInput$1 extends GraphQLSilk | Record<string, GraphQLSilk> | undefined = undefined, TValue = StandardSchemaV1.InferOutput<TOutput$1>> extends ResolverOptions<Subscription<TOutput$1, TInput$1, TValue>>, GraphQLFieldOptions {
|
|
573
|
-
input?: TInput$1;
|
|
571
|
+
input?: TInput$1 | undefined;
|
|
574
572
|
subscribe: (input: InferInputO<TInput$1>, payload: ResolverPayload | undefined) => MayPromise<AsyncIterator<TValue>>;
|
|
575
|
-
resolve?: (value: TValue, input: InferInputO<TInput$1>, payload: ResolverPayload | undefined) => MayPromise<StandardSchemaV1.InferOutput<TOutput$1
|
|
573
|
+
resolve?: ((value: TValue, input: InferInputO<TInput$1>, payload: ResolverPayload | undefined) => MayPromise<StandardSchemaV1.InferOutput<TOutput$1>>) | undefined;
|
|
576
574
|
}
|
|
577
575
|
/**
|
|
578
576
|
* Function to create a GraphQL subscription.
|
|
@@ -1179,7 +1177,7 @@ declare class GlobalWeaverContext implements Partial<Omit<WeaverContext, GlobalC
|
|
|
1179
1177
|
get id(): number | undefined;
|
|
1180
1178
|
get loomObjectMap(): Map<GraphQLObjectType<any, any>, LoomObjectType> | undefined;
|
|
1181
1179
|
get loomUnionMap(): Map<GraphQLUnionType, GraphQLUnionType> | undefined;
|
|
1182
|
-
get inputMap(): Map<
|
|
1180
|
+
get inputMap(): Map<GraphQLObjectType<any, any> | GraphQLInterfaceType, GraphQLInputObjectType> | undefined;
|
|
1183
1181
|
get interfaceMap(): Map<GraphQLObjectType<any, any>, GraphQLInterfaceType> | undefined;
|
|
1184
1182
|
get configs(): Map<string | symbol, WeaverConfig> | undefined;
|
|
1185
1183
|
get vendorWeavers(): Map<string, SchemaWeaver> | undefined;
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { GraphQLArgument, GraphQLArgumentConfig, GraphQLFieldConfig, GraphQLFieldConfigArgumentMap, GraphQLFieldExtensions, GraphQLFieldMap, GraphQLInputObjectType, GraphQLInputType, GraphQLInterfaceType, GraphQLInterfaceTypeConfig, GraphQLList, GraphQLNamedType, GraphQLNonNull, GraphQLNullableType, GraphQLObjectType, GraphQLObjectTypeConfig, GraphQLOutputType, GraphQLResolveInfo, GraphQLScalarType, GraphQLSchema, GraphQLSchemaConfig, GraphQLType, GraphQLUnionType } from "graphql";
|
|
2
2
|
|
|
3
|
+
//#region rolldown:runtime
|
|
4
|
+
//#endregion
|
|
3
5
|
//#region ../../node_modules/.pnpm/@standard-schema+spec@1.0.0/node_modules/@standard-schema/spec/dist/index.d.ts
|
|
4
6
|
/** The Standard Schema interface. */
|
|
5
7
|
interface StandardSchemaV1<Input = unknown, Output = Input> {
|
|
@@ -129,7 +131,7 @@ interface IChainFactory<TOutput$1 extends GraphQLSilk, TInput$1 extends GraphQLS
|
|
|
129
131
|
*/
|
|
130
132
|
interface ChainFactoryOptions extends FieldMeta {
|
|
131
133
|
/** Middleware functions to be applied to the field */
|
|
132
|
-
middlewares?: Middleware[];
|
|
134
|
+
middlewares?: Middleware[] | undefined;
|
|
133
135
|
}
|
|
134
136
|
/**
|
|
135
137
|
* Base class for all chain factories
|
|
@@ -407,8 +409,8 @@ interface FieldMeta extends GraphQLFieldOptions {
|
|
|
407
409
|
operation: "field" | "query" | "mutation" | "subscription";
|
|
408
410
|
output: GraphQLSilk;
|
|
409
411
|
input: GraphQLSilk | Record<string, GraphQLSilk> | void;
|
|
410
|
-
middlewares?: Middleware[];
|
|
411
|
-
dependencies?: string[];
|
|
412
|
+
middlewares?: Middleware[] | undefined;
|
|
413
|
+
dependencies?: string[] | undefined;
|
|
412
414
|
resolve: (...args: any) => MayPromise<any>;
|
|
413
415
|
}
|
|
414
416
|
interface BaseField {
|
|
@@ -419,11 +421,11 @@ interface Field<TParent$1 extends GraphQLSilk, TOutput$1 extends GraphQLSilk, TI
|
|
|
419
421
|
operation: "field";
|
|
420
422
|
output: TOutput$1;
|
|
421
423
|
input: TInput$1;
|
|
422
|
-
middlewares?: Middleware[];
|
|
424
|
+
middlewares?: Middleware[] | undefined;
|
|
423
425
|
dependencies?: TDependencies$1;
|
|
424
426
|
types?: {
|
|
425
427
|
parent: ReSilk<TParent$1>;
|
|
426
|
-
};
|
|
428
|
+
} | undefined;
|
|
427
429
|
resolve: (parent: StandardSchemaV1.InferOutput<NonNullable<TParent$1>>, input: InferInputO<TInput$1>, payload: ResolverPayload | void) => Promise<StandardSchemaV1.InferOutput<TOutput$1>>;
|
|
428
430
|
} & GraphQLFieldOptions;
|
|
429
431
|
}
|
|
@@ -433,7 +435,7 @@ interface Query<TOutput$1 extends GraphQLSilk, TInput$1 extends GraphQLSilk | Re
|
|
|
433
435
|
parent?: undefined;
|
|
434
436
|
output: TOutput$1;
|
|
435
437
|
input: TInput$1;
|
|
436
|
-
middlewares?: Middleware[];
|
|
438
|
+
middlewares?: Middleware[] | undefined;
|
|
437
439
|
resolve: (input: InferInputO<TInput$1>, payload: ResolverPayload | void) => Promise<StandardSchemaV1.InferOutput<TOutput$1>>;
|
|
438
440
|
} & GraphQLFieldOptions;
|
|
439
441
|
}
|
|
@@ -443,7 +445,7 @@ interface Mutation<TOutput$1 extends GraphQLSilk, TInput$1 extends GraphQLSilk |
|
|
|
443
445
|
parent?: undefined;
|
|
444
446
|
output: TOutput$1;
|
|
445
447
|
input: TInput$1;
|
|
446
|
-
middlewares?: Middleware[];
|
|
448
|
+
middlewares?: Middleware[] | undefined;
|
|
447
449
|
resolve: (input: InferInputO<TInput$1>, payload: ResolverPayload | void) => Promise<StandardSchemaV1.InferOutput<TOutput$1>>;
|
|
448
450
|
} & GraphQLFieldOptions;
|
|
449
451
|
}
|
|
@@ -453,10 +455,10 @@ interface Subscription<TOutput$1 extends GraphQLSilk, TInput$1 extends GraphQLSi
|
|
|
453
455
|
parent?: undefined;
|
|
454
456
|
output: TOutput$1;
|
|
455
457
|
input: TInput$1;
|
|
456
|
-
middlewares?: Middleware[];
|
|
457
|
-
types?: {
|
|
458
|
+
middlewares?: Middleware[] | undefined;
|
|
459
|
+
types?: ({
|
|
458
460
|
value: TValue;
|
|
459
|
-
} & GraphQLFieldOptions;
|
|
461
|
+
} & GraphQLFieldOptions) | undefined;
|
|
460
462
|
resolve: (value: TValue, input: InferInputO<TInput$1>, payload: ResolverPayload | void) => MayPromise<StandardSchemaV1.InferOutput<TOutput$1>>;
|
|
461
463
|
subscribe: (input: InferInputO<TInput$1>, payload: ResolverPayload | void) => MayPromise<AsyncIterator<TValue>>;
|
|
462
464
|
} & GraphQLFieldOptions;
|
|
@@ -465,8 +467,8 @@ interface Resolver {
|
|
|
465
467
|
readonly "~meta": {
|
|
466
468
|
[IS_RESOLVER]: true;
|
|
467
469
|
fields: Record<string, BaseField | typeof FIELD_HIDDEN>;
|
|
468
|
-
options?: ResolverOptionsWithExtensions<any
|
|
469
|
-
parent?: GraphQLSilk;
|
|
470
|
+
options?: ResolverOptionsWithExtensions<any> | undefined;
|
|
471
|
+
parent?: GraphQLSilk | undefined;
|
|
470
472
|
};
|
|
471
473
|
}
|
|
472
474
|
type Operation = Query<GraphQLSilk, GraphQLSilk | Record<string, GraphQLSilk> | void> | Mutation<GraphQLSilk, GraphQLSilk | Record<string, GraphQLSilk> | void> | Subscription<GraphQLSilk, GraphQLSilk | Record<string, GraphQLSilk> | void, any>;
|
|
@@ -485,11 +487,11 @@ interface GraphQLSilk<TOutput$1 = any, TInput$1 = any> extends StandardSchemaV1<
|
|
|
485
487
|
[GET_GRAPHQL_ARGUMENT_CONFIG]?: MayGetter<Omit<GraphQLArgumentConfig, "type" | "astNode"> | undefined>;
|
|
486
488
|
}
|
|
487
489
|
interface ResolverOptions<TField extends FieldOrOperation = FieldOrOperation> {
|
|
488
|
-
middlewares?: Middleware<TField>[];
|
|
490
|
+
middlewares?: Middleware<TField>[] | undefined;
|
|
489
491
|
}
|
|
490
492
|
interface ResolverOptionsWithExtensions<TField extends FieldOrOperation = FieldOrOperation> extends ResolverOptions<TField>, Pick<GraphQLObjectTypeConfig<any, any>, "extensions"> {}
|
|
491
493
|
interface ResolverOptionsWithParent<TField extends FieldOrOperation = FieldOrOperation> extends ResolverOptionsWithExtensions<TField> {
|
|
492
|
-
parent?: TField extends Field<infer TParent, any, any, any> ? TParent : undefined;
|
|
494
|
+
parent?: (TField extends Field<infer TParent, any, any, any> ? TParent : undefined) | undefined;
|
|
493
495
|
}
|
|
494
496
|
interface ResolvingOptions extends Pick<ResolverOptions, "middlewares"> {
|
|
495
497
|
payload: ResolverPayload | undefined;
|
|
@@ -503,14 +505,14 @@ type InferFieldOutput<TField extends BaseField> = TField["~meta"]["output"];
|
|
|
503
505
|
* Options for creating a GraphQL Query.
|
|
504
506
|
*/
|
|
505
507
|
interface QueryOptions<TOutput$1 extends GraphQLSilk, TInput$1 extends GraphQLSilk | Record<string, GraphQLSilk> | void = void> extends ResolverOptions<Query<TOutput$1, TInput$1>>, GraphQLFieldOptions {
|
|
506
|
-
input?: TInput$1;
|
|
508
|
+
input?: TInput$1 | undefined;
|
|
507
509
|
resolve: (input: InferInputO<TInput$1>, payload: ResolverPayload | undefined) => MayPromise<StandardSchemaV1.InferOutput<TOutput$1>>;
|
|
508
510
|
}
|
|
509
511
|
/**
|
|
510
512
|
* Options for creating a GraphQL Mutation.
|
|
511
513
|
*/
|
|
512
514
|
interface MutationOptions<TOutput$1 extends GraphQLSilk, TInput$1 extends GraphQLSilk | Record<string, GraphQLSilk> | undefined = undefined> extends ResolverOptions<Mutation<TOutput$1, TInput$1>>, GraphQLFieldOptions {
|
|
513
|
-
input?: TInput$1;
|
|
515
|
+
input?: TInput$1 | undefined;
|
|
514
516
|
resolve: (input: InferInputO<TInput$1>, payload: ResolverPayload | undefined) => MayPromise<StandardSchemaV1.InferOutput<TOutput$1>>;
|
|
515
517
|
}
|
|
516
518
|
/**
|
|
@@ -538,8 +540,8 @@ interface MutationFactoryWithChain extends MutationFactory, MutationChainFactory
|
|
|
538
540
|
* Options for External Filed of existing GraphQL Object.
|
|
539
541
|
*/
|
|
540
542
|
interface FieldOptions<TParent$1 extends GraphQLSilk, TOutput$1 extends GraphQLSilk, TInput$1 extends GraphQLSilk | Record<string, GraphQLSilk> | void = void, TDependencies$1 extends string[] | undefined = undefined> extends ResolverOptions<Field<TParent$1, TOutput$1, TInput$1, TDependencies$1>>, GraphQLFieldOptions {
|
|
541
|
-
input?: TInput$1;
|
|
542
|
-
dependencies?: TDependencies$1;
|
|
543
|
+
input?: TInput$1 | undefined;
|
|
544
|
+
dependencies?: TDependencies$1 | undefined;
|
|
543
545
|
resolve: (parent: TDependencies$1 extends string[] ? RequireKeys<NonNullable<StandardSchemaV1.InferOutput<TParent$1>>, TDependencies$1[number]> : NonNullable<StandardSchemaV1.InferOutput<TParent$1>>, input: InferInputO<TInput$1>, payload: ResolverPayload | undefined) => MayPromise<StandardSchemaV1.InferOutput<TOutput$1>>;
|
|
544
546
|
}
|
|
545
547
|
/**
|
|
@@ -568,9 +570,9 @@ interface FieldFactoryWithUtils extends FieldFactory, FieldChainFactory<never, u
|
|
|
568
570
|
* Options for creating a GraphQL Subscription.
|
|
569
571
|
*/
|
|
570
572
|
interface SubscriptionOptions<TOutput$1 extends GraphQLSilk, TInput$1 extends GraphQLSilk | Record<string, GraphQLSilk> | undefined = undefined, TValue = StandardSchemaV1.InferOutput<TOutput$1>> extends ResolverOptions<Subscription<TOutput$1, TInput$1, TValue>>, GraphQLFieldOptions {
|
|
571
|
-
input?: TInput$1;
|
|
573
|
+
input?: TInput$1 | undefined;
|
|
572
574
|
subscribe: (input: InferInputO<TInput$1>, payload: ResolverPayload | undefined) => MayPromise<AsyncIterator<TValue>>;
|
|
573
|
-
resolve?: (value: TValue, input: InferInputO<TInput$1>, payload: ResolverPayload | undefined) => MayPromise<StandardSchemaV1.InferOutput<TOutput$1
|
|
575
|
+
resolve?: ((value: TValue, input: InferInputO<TInput$1>, payload: ResolverPayload | undefined) => MayPromise<StandardSchemaV1.InferOutput<TOutput$1>>) | undefined;
|
|
574
576
|
}
|
|
575
577
|
/**
|
|
576
578
|
* Function to create a GraphQL subscription.
|
|
@@ -1177,7 +1179,7 @@ declare class GlobalWeaverContext implements Partial<Omit<WeaverContext, GlobalC
|
|
|
1177
1179
|
get id(): number | undefined;
|
|
1178
1180
|
get loomObjectMap(): Map<GraphQLObjectType<any, any>, LoomObjectType> | undefined;
|
|
1179
1181
|
get loomUnionMap(): Map<GraphQLUnionType, GraphQLUnionType> | undefined;
|
|
1180
|
-
get inputMap(): Map<
|
|
1182
|
+
get inputMap(): Map<GraphQLObjectType<any, any> | GraphQLInterfaceType, GraphQLInputObjectType> | undefined;
|
|
1181
1183
|
get interfaceMap(): Map<GraphQLObjectType<any, any>, GraphQLInterfaceType> | undefined;
|
|
1182
1184
|
get configs(): Map<string | symbol, WeaverConfig> | undefined;
|
|
1183
1185
|
get vendorWeavers(): Map<string, SchemaWeaver> | undefined;
|
package/dist/index.d.cts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { $ as resolver, $t as FieldOptions, A as getGraphQLArgumentConfig, An as BaseChainFactory, At as MayGetter, B as ObjectChainResolver, Bn as SubscriptionChainFactory, Bt as tryIn, C as DirectiveItem, Cn as FieldOrOperation, Ct as Middleware, D as ListSilk, Dn as Resolver, Dt as applyMiddlewares, E as GQLoomExtensions, En as Query, Et as MiddlewareOptions, F as nullableSilk, Fn as MutationChainFactory, Ft as BatchLoadFn, G as createMutation, Gt as onlyMemoization, H as ResolverMeta, Hn as symbols_d_exports, Ht as assignContextMap, I as parseSilk, In as MutationFactoryWithResolve, It as EasyDataLoader, J as defaultSubscriptionResolve, Jt as getFieldOptions, K as createQuery, Kt as AUTO_ALIASING, L as silk, Ln as QueryChainFactory, Lt as LoomDataLoader, M as isSilk, Mn as FieldChainFactory, Mt as OmitInUnion, N as listSilk, Nn as FieldFactoryWithResolve, Nt as RequireKeys, O as NonNullSilk, On as Subscription, Ot as filterMiddlewares, P as nonNullSilk, Pn as IChainFactory, Pt as ValueOf, Q as query, Qt as FieldFactoryWithUtils, R as ChainResolver, Rn as QueryFactoryWithResolve, Rt as markErrorLocation, S as inputToArgs, Sn as FieldMeta, St as CallableMiddlewareOptions, T as GQLoomExtensionAttribute, Tn as Operation, Tt as MiddlewareOperation, U as ToExecutorProps, Un as StandardSchemaV1, Ut as getMemoizationMap, V as ResolverFactory, Vn as SubscriptionNeedResolve, Vt as OnlyMemoizationPayload, W as createField, Wt as isOnlyMemoryPayload, X as loom, Xt as getSubscriptionOptions, Y as field, Yt as getOperationOptions, Z as mutation, Zt as FieldFactory, _ as SchemaWeaver, _n as SubscriptionFactory, _t as meta, a as LoomObjectType, an as MutationFactory, at as getStandardValue, b as ensureInputObjectType, bn as BaseField, bt as toFieldMap, c as AliasList, cn as OperationType, ct as pascalCase, d as WeaverContext, dn as QueryOptions, dt as ResolvingFieldsOptions, en as FieldOrOperationType, et as subscription, f as collectName, fn as ResolverOptions, ft as getDeepResolvingFields, g as weaverContext, gn as ResolvingOptions, gt as mapValue, h as provideWeaverContext, hn as ResolverPayload, ht as deepMerge, i as CoreSchemaWeaverConfigOptions, in as InferFieldOutput, it as createInputParser, j as getGraphQLType, jn as ChainFactoryOptions, jt as MayPromise, k as NullableSilk, kn as types_loom_d_exports, kt as IsAny, l as GlobalWeaverContext, ln as QueryFactory, lt as screamingSnakeCase, m as initWeaverContext, mn as ResolverOptionsWithParent, mt as parseResolvingFields, n as weave, nn as GraphQLSilk, nt as InferInputI, o as OPERATION_OBJECT_NAMES, on as MutationFactoryWithChain, ot as parseInputValue, p as collectNames, pn as ResolverOptionsWithExtensions, pt as getResolvingFields, q as createSubscription, qt as DERIVED_DEPENDENCIES, r as CoreSchemaWeaverConfig, rn as InferFieldInput, rt as InferInputO, s as getCacheType, sn as MutationOptions, st as capitalize, t as GraphQLSchemaLoom, tn as GraphQLFieldOptions, tt as CallableInputParser, u as WeaverConfig, un as QueryFactoryWithChain, ut as ResolvingFields, v as isSchemaVendorWeaver, vn as SubscriptionFactoryWithChain, vt as notNullish, w as DirectiveRecord, wn as Mutation, wt as MiddlewareConfig, x as ensureInputType, xn as Field, xt as toObjMap, y as ensureInterfaceType, yn as SubscriptionOptions, yt as toArguments, z as Executor, zn as ResolvableSubscription, zt as markLocation } from "./index-
|
|
1
|
+
import { $ as resolver, $t as FieldOptions, A as getGraphQLArgumentConfig, An as BaseChainFactory, At as MayGetter, B as ObjectChainResolver, Bn as SubscriptionChainFactory, Bt as tryIn, C as DirectiveItem, Cn as FieldOrOperation, Ct as Middleware, D as ListSilk, Dn as Resolver, Dt as applyMiddlewares, E as GQLoomExtensions, En as Query, Et as MiddlewareOptions, F as nullableSilk, Fn as MutationChainFactory, Ft as BatchLoadFn, G as createMutation, Gt as onlyMemoization, H as ResolverMeta, Hn as symbols_d_exports, Ht as assignContextMap, I as parseSilk, In as MutationFactoryWithResolve, It as EasyDataLoader, J as defaultSubscriptionResolve, Jt as getFieldOptions, K as createQuery, Kt as AUTO_ALIASING, L as silk, Ln as QueryChainFactory, Lt as LoomDataLoader, M as isSilk, Mn as FieldChainFactory, Mt as OmitInUnion, N as listSilk, Nn as FieldFactoryWithResolve, Nt as RequireKeys, O as NonNullSilk, On as Subscription, Ot as filterMiddlewares, P as nonNullSilk, Pn as IChainFactory, Pt as ValueOf, Q as query, Qt as FieldFactoryWithUtils, R as ChainResolver, Rn as QueryFactoryWithResolve, Rt as markErrorLocation, S as inputToArgs, Sn as FieldMeta, St as CallableMiddlewareOptions, T as GQLoomExtensionAttribute, Tn as Operation, Tt as MiddlewareOperation, U as ToExecutorProps, Un as StandardSchemaV1, Ut as getMemoizationMap, V as ResolverFactory, Vn as SubscriptionNeedResolve, Vt as OnlyMemoizationPayload, W as createField, Wt as isOnlyMemoryPayload, X as loom, Xt as getSubscriptionOptions, Y as field, Yt as getOperationOptions, Z as mutation, Zt as FieldFactory, _ as SchemaWeaver, _n as SubscriptionFactory, _t as meta, a as LoomObjectType, an as MutationFactory, at as getStandardValue, b as ensureInputObjectType, bn as BaseField, bt as toFieldMap, c as AliasList, cn as OperationType, ct as pascalCase, d as WeaverContext, dn as QueryOptions, dt as ResolvingFieldsOptions, en as FieldOrOperationType, et as subscription, f as collectName, fn as ResolverOptions, ft as getDeepResolvingFields, g as weaverContext, gn as ResolvingOptions, gt as mapValue, h as provideWeaverContext, hn as ResolverPayload, ht as deepMerge, i as CoreSchemaWeaverConfigOptions, in as InferFieldOutput, it as createInputParser, j as getGraphQLType, jn as ChainFactoryOptions, jt as MayPromise, k as NullableSilk, kn as types_loom_d_exports, kt as IsAny, l as GlobalWeaverContext, ln as QueryFactory, lt as screamingSnakeCase, m as initWeaverContext, mn as ResolverOptionsWithParent, mt as parseResolvingFields, n as weave, nn as GraphQLSilk, nt as InferInputI, o as OPERATION_OBJECT_NAMES, on as MutationFactoryWithChain, ot as parseInputValue, p as collectNames, pn as ResolverOptionsWithExtensions, pt as getResolvingFields, q as createSubscription, qt as DERIVED_DEPENDENCIES, r as CoreSchemaWeaverConfig, rn as InferFieldInput, rt as InferInputO, s as getCacheType, sn as MutationOptions, st as capitalize, t as GraphQLSchemaLoom, tn as GraphQLFieldOptions, tt as CallableInputParser, u as WeaverConfig, un as QueryFactoryWithChain, ut as ResolvingFields, v as isSchemaVendorWeaver, vn as SubscriptionFactoryWithChain, vt as notNullish, w as DirectiveRecord, wn as Mutation, wt as MiddlewareConfig, x as ensureInputType, xn as Field, xt as toObjMap, y as ensureInterfaceType, yn as SubscriptionOptions, yt as toArguments, z as Executor, zn as ResolvableSubscription, zt as markLocation } from "./index-DLEFTLoS.cjs";
|
|
2
2
|
export { AUTO_ALIASING, AliasList, BaseChainFactory, BaseField, BatchLoadFn, CallableInputParser, CallableMiddlewareOptions, ChainFactoryOptions, ChainResolver, CoreSchemaWeaverConfig, CoreSchemaWeaverConfigOptions, DERIVED_DEPENDENCIES, DirectiveItem, DirectiveRecord, EasyDataLoader, Executor, Field, FieldChainFactory, FieldFactory, FieldFactoryWithResolve, FieldFactoryWithUtils, FieldMeta, FieldOptions, FieldOrOperation, FieldOrOperationType, GQLoomExtensionAttribute, GQLoomExtensions, GlobalWeaverContext, GraphQLFieldOptions, GraphQLSchemaLoom, GraphQLSilk, IChainFactory, InferFieldInput, InferFieldOutput, InferInputI, InferInputO, IsAny, ListSilk, types_loom_d_exports as Loom, LoomDataLoader, LoomObjectType, MayGetter, MayPromise, Middleware, MiddlewareConfig, MiddlewareOperation, MiddlewareOptions, Mutation, MutationChainFactory, MutationFactory, MutationFactoryWithChain, MutationFactoryWithResolve, MutationOptions, NonNullSilk, NullableSilk, OPERATION_OBJECT_NAMES, ObjectChainResolver, OmitInUnion, OnlyMemoizationPayload, Operation, OperationType, Query, QueryChainFactory, QueryFactory, QueryFactoryWithChain, QueryFactoryWithResolve, QueryOptions, RequireKeys, ResolvableSubscription, Resolver, ResolverFactory, ResolverMeta, ResolverOptions, ResolverOptionsWithExtensions, ResolverOptionsWithParent, ResolverPayload, ResolvingFields, ResolvingFieldsOptions, ResolvingOptions, symbols_d_exports as SYMBOLS, SchemaWeaver, StandardSchemaV1, Subscription, SubscriptionChainFactory, SubscriptionFactory, SubscriptionFactoryWithChain, SubscriptionNeedResolve, SubscriptionOptions, ToExecutorProps, ValueOf, WeaverConfig, WeaverContext, applyMiddlewares, assignContextMap, capitalize, collectName, collectNames, createField, createInputParser, createMutation, createQuery, createSubscription, deepMerge, defaultSubscriptionResolve, ensureInputObjectType, ensureInputType, ensureInterfaceType, field, filterMiddlewares, getCacheType, getDeepResolvingFields, getFieldOptions, getGraphQLArgumentConfig, getGraphQLType, getMemoizationMap, getOperationOptions, getResolvingFields, getStandardValue, getSubscriptionOptions, initWeaverContext, inputToArgs, isOnlyMemoryPayload, isSchemaVendorWeaver, isSilk, listSilk, loom, mapValue, markErrorLocation, markLocation, meta, mutation, nonNullSilk, notNullish, nullableSilk, onlyMemoization, parseInputValue, parseResolvingFields, parseSilk, pascalCase, provideWeaverContext, query, resolver, screamingSnakeCase, silk, subscription, toArguments, toFieldMap, toObjMap, tryIn, weave, weaverContext };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { $ as resolver, $t as FieldOptions, A as getGraphQLArgumentConfig, An as BaseChainFactory, At as MayGetter, B as ObjectChainResolver, Bn as SubscriptionChainFactory, Bt as tryIn, C as DirectiveItem, Cn as FieldOrOperation, Ct as Middleware, D as ListSilk, Dn as Resolver, Dt as applyMiddlewares, E as GQLoomExtensions, En as Query, Et as MiddlewareOptions, F as nullableSilk, Fn as MutationChainFactory, Ft as BatchLoadFn, G as createMutation, Gt as onlyMemoization, H as ResolverMeta, Hn as symbols_d_exports, Ht as assignContextMap, I as parseSilk, In as MutationFactoryWithResolve, It as EasyDataLoader, J as defaultSubscriptionResolve, Jt as getFieldOptions, K as createQuery, Kt as AUTO_ALIASING, L as silk, Ln as QueryChainFactory, Lt as LoomDataLoader, M as isSilk, Mn as FieldChainFactory, Mt as OmitInUnion, N as listSilk, Nn as FieldFactoryWithResolve, Nt as RequireKeys, O as NonNullSilk, On as Subscription, Ot as filterMiddlewares, P as nonNullSilk, Pn as IChainFactory, Pt as ValueOf, Q as query, Qt as FieldFactoryWithUtils, R as ChainResolver, Rn as QueryFactoryWithResolve, Rt as markErrorLocation, S as inputToArgs, Sn as FieldMeta, St as CallableMiddlewareOptions, T as GQLoomExtensionAttribute, Tn as Operation, Tt as MiddlewareOperation, U as ToExecutorProps, Un as StandardSchemaV1, Ut as getMemoizationMap, V as ResolverFactory, Vn as SubscriptionNeedResolve, Vt as OnlyMemoizationPayload, W as createField, Wt as isOnlyMemoryPayload, X as loom, Xt as getSubscriptionOptions, Y as field, Yt as getOperationOptions, Z as mutation, Zt as FieldFactory, _ as SchemaWeaver, _n as SubscriptionFactory, _t as meta, a as LoomObjectType, an as MutationFactory, at as getStandardValue, b as ensureInputObjectType, bn as BaseField, bt as toFieldMap, c as AliasList, cn as OperationType, ct as pascalCase, d as WeaverContext, dn as QueryOptions, dt as ResolvingFieldsOptions, en as FieldOrOperationType, et as subscription, f as collectName, fn as ResolverOptions, ft as getDeepResolvingFields, g as weaverContext, gn as ResolvingOptions, gt as mapValue, h as provideWeaverContext, hn as ResolverPayload, ht as deepMerge, i as CoreSchemaWeaverConfigOptions, in as InferFieldOutput, it as createInputParser, j as getGraphQLType, jn as ChainFactoryOptions, jt as MayPromise, k as NullableSilk, kn as types_loom_d_exports, kt as IsAny, l as GlobalWeaverContext, ln as QueryFactory, lt as screamingSnakeCase, m as initWeaverContext, mn as ResolverOptionsWithParent, mt as parseResolvingFields, n as weave, nn as GraphQLSilk, nt as InferInputI, o as OPERATION_OBJECT_NAMES, on as MutationFactoryWithChain, ot as parseInputValue, p as collectNames, pn as ResolverOptionsWithExtensions, pt as getResolvingFields, q as createSubscription, qt as DERIVED_DEPENDENCIES, r as CoreSchemaWeaverConfig, rn as InferFieldInput, rt as InferInputO, s as getCacheType, sn as MutationOptions, st as capitalize, t as GraphQLSchemaLoom, tn as GraphQLFieldOptions, tt as CallableInputParser, u as WeaverConfig, un as QueryFactoryWithChain, ut as ResolvingFields, v as isSchemaVendorWeaver, vn as SubscriptionFactoryWithChain, vt as notNullish, w as DirectiveRecord, wn as Mutation, wt as MiddlewareConfig, x as ensureInputType, xn as Field, xt as toObjMap, y as ensureInterfaceType, yn as SubscriptionOptions, yt as toArguments, z as Executor, zn as ResolvableSubscription, zt as markLocation } from "./index-
|
|
1
|
+
import { $ as resolver, $t as FieldOptions, A as getGraphQLArgumentConfig, An as BaseChainFactory, At as MayGetter, B as ObjectChainResolver, Bn as SubscriptionChainFactory, Bt as tryIn, C as DirectiveItem, Cn as FieldOrOperation, Ct as Middleware, D as ListSilk, Dn as Resolver, Dt as applyMiddlewares, E as GQLoomExtensions, En as Query, Et as MiddlewareOptions, F as nullableSilk, Fn as MutationChainFactory, Ft as BatchLoadFn, G as createMutation, Gt as onlyMemoization, H as ResolverMeta, Hn as symbols_d_exports, Ht as assignContextMap, I as parseSilk, In as MutationFactoryWithResolve, It as EasyDataLoader, J as defaultSubscriptionResolve, Jt as getFieldOptions, K as createQuery, Kt as AUTO_ALIASING, L as silk, Ln as QueryChainFactory, Lt as LoomDataLoader, M as isSilk, Mn as FieldChainFactory, Mt as OmitInUnion, N as listSilk, Nn as FieldFactoryWithResolve, Nt as RequireKeys, O as NonNullSilk, On as Subscription, Ot as filterMiddlewares, P as nonNullSilk, Pn as IChainFactory, Pt as ValueOf, Q as query, Qt as FieldFactoryWithUtils, R as ChainResolver, Rn as QueryFactoryWithResolve, Rt as markErrorLocation, S as inputToArgs, Sn as FieldMeta, St as CallableMiddlewareOptions, T as GQLoomExtensionAttribute, Tn as Operation, Tt as MiddlewareOperation, U as ToExecutorProps, Un as StandardSchemaV1, Ut as getMemoizationMap, V as ResolverFactory, Vn as SubscriptionNeedResolve, Vt as OnlyMemoizationPayload, W as createField, Wt as isOnlyMemoryPayload, X as loom, Xt as getSubscriptionOptions, Y as field, Yt as getOperationOptions, Z as mutation, Zt as FieldFactory, _ as SchemaWeaver, _n as SubscriptionFactory, _t as meta, a as LoomObjectType, an as MutationFactory, at as getStandardValue, b as ensureInputObjectType, bn as BaseField, bt as toFieldMap, c as AliasList, cn as OperationType, ct as pascalCase, d as WeaverContext, dn as QueryOptions, dt as ResolvingFieldsOptions, en as FieldOrOperationType, et as subscription, f as collectName, fn as ResolverOptions, ft as getDeepResolvingFields, g as weaverContext, gn as ResolvingOptions, gt as mapValue, h as provideWeaverContext, hn as ResolverPayload, ht as deepMerge, i as CoreSchemaWeaverConfigOptions, in as InferFieldOutput, it as createInputParser, j as getGraphQLType, jn as ChainFactoryOptions, jt as MayPromise, k as NullableSilk, kn as types_loom_d_exports, kt as IsAny, l as GlobalWeaverContext, ln as QueryFactory, lt as screamingSnakeCase, m as initWeaverContext, mn as ResolverOptionsWithParent, mt as parseResolvingFields, n as weave, nn as GraphQLSilk, nt as InferInputI, o as OPERATION_OBJECT_NAMES, on as MutationFactoryWithChain, ot as parseInputValue, p as collectNames, pn as ResolverOptionsWithExtensions, pt as getResolvingFields, q as createSubscription, qt as DERIVED_DEPENDENCIES, r as CoreSchemaWeaverConfig, rn as InferFieldInput, rt as InferInputO, s as getCacheType, sn as MutationOptions, st as capitalize, t as GraphQLSchemaLoom, tn as GraphQLFieldOptions, tt as CallableInputParser, u as WeaverConfig, un as QueryFactoryWithChain, ut as ResolvingFields, v as isSchemaVendorWeaver, vn as SubscriptionFactoryWithChain, vt as notNullish, w as DirectiveRecord, wn as Mutation, wt as MiddlewareConfig, x as ensureInputType, xn as Field, xt as toObjMap, y as ensureInterfaceType, yn as SubscriptionOptions, yt as toArguments, z as Executor, zn as ResolvableSubscription, zt as markLocation } from "./index-B3y48ybK.js";
|
|
2
2
|
export { AUTO_ALIASING, AliasList, BaseChainFactory, BaseField, BatchLoadFn, CallableInputParser, CallableMiddlewareOptions, ChainFactoryOptions, ChainResolver, CoreSchemaWeaverConfig, CoreSchemaWeaverConfigOptions, DERIVED_DEPENDENCIES, DirectiveItem, DirectiveRecord, EasyDataLoader, Executor, Field, FieldChainFactory, FieldFactory, FieldFactoryWithResolve, FieldFactoryWithUtils, FieldMeta, FieldOptions, FieldOrOperation, FieldOrOperationType, GQLoomExtensionAttribute, GQLoomExtensions, GlobalWeaverContext, GraphQLFieldOptions, GraphQLSchemaLoom, GraphQLSilk, IChainFactory, InferFieldInput, InferFieldOutput, InferInputI, InferInputO, IsAny, ListSilk, types_loom_d_exports as Loom, LoomDataLoader, LoomObjectType, MayGetter, MayPromise, Middleware, MiddlewareConfig, MiddlewareOperation, MiddlewareOptions, Mutation, MutationChainFactory, MutationFactory, MutationFactoryWithChain, MutationFactoryWithResolve, MutationOptions, NonNullSilk, NullableSilk, OPERATION_OBJECT_NAMES, ObjectChainResolver, OmitInUnion, OnlyMemoizationPayload, Operation, OperationType, Query, QueryChainFactory, QueryFactory, QueryFactoryWithChain, QueryFactoryWithResolve, QueryOptions, RequireKeys, ResolvableSubscription, Resolver, ResolverFactory, ResolverMeta, ResolverOptions, ResolverOptionsWithExtensions, ResolverOptionsWithParent, ResolverPayload, ResolvingFields, ResolvingFieldsOptions, ResolvingOptions, symbols_d_exports as SYMBOLS, SchemaWeaver, StandardSchemaV1, Subscription, SubscriptionChainFactory, SubscriptionFactory, SubscriptionFactoryWithChain, SubscriptionNeedResolve, SubscriptionOptions, ToExecutorProps, ValueOf, WeaverConfig, WeaverContext, applyMiddlewares, assignContextMap, capitalize, collectName, collectNames, createField, createInputParser, createMutation, createQuery, createSubscription, deepMerge, defaultSubscriptionResolve, ensureInputObjectType, ensureInputType, ensureInterfaceType, field, filterMiddlewares, getCacheType, getDeepResolvingFields, getFieldOptions, getGraphQLArgumentConfig, getGraphQLType, getMemoizationMap, getOperationOptions, getResolvingFields, getStandardValue, getSubscriptionOptions, initWeaverContext, inputToArgs, isOnlyMemoryPayload, isSchemaVendorWeaver, isSilk, listSilk, loom, mapValue, markErrorLocation, markLocation, meta, mutation, nonNullSilk, notNullish, nullableSilk, onlyMemoization, parseInputValue, parseResolvingFields, parseSilk, pascalCase, provideWeaverContext, query, resolver, screamingSnakeCase, silk, subscription, toArguments, toFieldMap, toObjMap, tryIn, weave, weaverContext };
|