Interface ClientCodeGeneratorOptions

interface ClientCodeGeneratorOptions {
    commonCodeGenerator?: CommonCodeGenerator;
    operations: DocumentNode;
    scalarTypes?: Record<string, string | {
        from?: string;
        type: string;
    }>;
    schema: GraphQLSchema;
}

Properties

commonCodeGenerator?: CommonCodeGenerator
operations: DocumentNode
scalarTypes?: Record<string, string | {
    from?: string;
    type: string;
}>
schema: GraphQLSchema