@shopify/cli-kit
    Preparing search index...

    Interface AppDevRequestOptions<TResult, TVariables>

    GraphQL query to execute.

    The shop fqdn.

    Partners token.

    GraphQL variables to pass to the query.

    Unauthorized handler to use.

    interface AppDevRequestOptions<TResult, TVariables extends Variables> {
        query: TypedDocumentNode<TResult, TVariables>;
        requestOptions?: RequestOptions;
        shopFqdn: string;
        token: string;
        unauthorizedHandler: UnauthorizedHandler;
        variables?: TVariables;
    }

    Type Parameters

    • TResult
    • TVariables extends Variables
    Index

    Properties

    query: TypedDocumentNode<TResult, TVariables>
    requestOptions?: RequestOptions
    shopFqdn: string
    token: string
    unauthorizedHandler: UnauthorizedHandler
    variables?: TVariables