Interface BusinessPlatformOrganizationsRequestOptions<TResult, TVariables>

GraphQL query to execute.

Business Platform token.

GraphQL variables to pass to the query.

Cache options for the request. If not present, the request will not be cached.

interface BusinessPlatformOrganizationsRequestOptions<
    TResult,
    TVariables extends Variables,
> {
    cacheOptions?: CacheOptions;
    organizationId: string;
    query: TypedDocumentNode<TResult, TVariables>;
    token: string;
    unauthorizedHandler: UnauthorizedHandler;
    variables?: TVariables;
}

Type Parameters

  • TResult
  • TVariables extends Variables

Hierarchy (View Summary)

Properties

cacheOptions?: CacheOptions
organizationId: string
query: TypedDocumentNode<TResult, TVariables>
token: string
unauthorizedHandler: UnauthorizedHandler
variables?: TVariables