@coopenomics/sdk
    Preparing search index...

    Variable GqlConst

    Gql: <
        O extends "query"
        | "mutation",
        OVERRIDESCLR extends ScalarDefinition,
        R extends keyof ValueTypes = GenericOperation<O>,
    >(
        operation: O,
        graphqlOptions?: ThunderGraphQLOptions<OVERRIDESCLR>,
    ) => <Z extends unknown>(
        o: Z & {
            [P in string | number | symbol]: P extends keyof ValueTypes[R]
                ? Z[P]
                : never
        },
        ops?: OperationOptions & { variables?: Record<string, unknown> },
    ) => Promise<
        InputType<
            GraphQLTypes[R],
            Z,
            UnionOverrideKeys<ScalarDefinition, OVERRIDESCLR>,
        >,
    > = ...

    Type Declaration