Home / Function/ getCloudMarketplaceOnboardingInfo() — supabase Function Reference

getCloudMarketplaceOnboardingInfo() — supabase Function Reference

Architecture documentation for the getCloudMarketplaceOnboardingInfo() function in cloud-marketplace-query.ts from the supabase codebase.

Entity Profile

Dependency Diagram

graph TD
  de0f51b5_a09a_d19d_7685_d3752a8d6582["getCloudMarketplaceOnboardingInfo()"]
  e1ed520f_1e4f_09ef_5750_d3c9a554e529["useCloudMarketplaceOnboardingInfoQuery()"]
  e1ed520f_1e4f_09ef_5750_d3c9a554e529 -->|calls| de0f51b5_a09a_d19d_7685_d3752a8d6582
  style de0f51b5_a09a_d19d_7685_d3752a8d6582 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

apps/studio/components/interfaces/Organization/CloudMarketplace/cloud-marketplace-query.ts lines 11–26

export async function getCloudMarketplaceOnboardingInfo(
  { buyerId }: CloudMarketplaceOnboardingInfoVariables,
  signal?: AbortSignal
) {
  const { data, error } = await get(
    '/platform/cloud-marketplace/buyers/{buyer_id}/onboarding-info',
    {
      params: { path: { buyer_id: buyerId } },
      signal,
    }
  )

  if (error) handleError(error)

  return data
}

Subdomains

Frequently Asked Questions

What does getCloudMarketplaceOnboardingInfo() do?
getCloudMarketplaceOnboardingInfo() is a function in the supabase codebase.
What calls getCloudMarketplaceOnboardingInfo()?
getCloudMarketplaceOnboardingInfo() is called by 1 function(s): useCloudMarketplaceOnboardingInfoQuery.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free