altair-graphql-core
Version:
Several of the core logic for altair graphql client
29 lines • 795 B
TypeScript
import { z } from 'zod/v4';
export declare const requestHandlerIdsSchema: z.ZodEnum<{
http: "http";
websocket: "websocket";
"graphql-ws": "graphql-ws";
"app-sync": "app-sync";
"action-cable": "action-cable";
"graphql-sse": "graphql-sse";
}>;
export declare enum MultiResponseStrategy {
/**
* Automatically determine the strategy based on the response
*/
AUTO = "auto",
/**
* Concatenate all responses
*/
CONCATENATE = "concatenate",
/**
* Append responses as a list
*/
APPEND = "append",
/**
* Patch the responses together following the GraphQL spec
*/
PATCH = "patch"
}
export declare const multiResponseStrategySchema: z.ZodEnum<typeof MultiResponseStrategy>;
//# sourceMappingURL=schemas.d.ts.map