Home / Function/ generateDomainGraph() — typescript-sdk Function Reference

generateDomainGraph() — typescript-sdk Function Reference

Architecture documentation for the generateDomainGraph() function in async.ts from the typescript-sdk codebase.

Entity Profile

Dependency Diagram

graph TD
  c144f601_7c5e_30b9_1dfb_840d2098c59b["generateDomainGraph()"]
  06ba102a_c6e3_2a87_7e06_5e63d4690a7c["generateDomainGraph()"]
  c144f601_7c5e_30b9_1dfb_840d2098c59b -->|calls| 06ba102a_c6e3_2a87_7e06_5e63d4690a7c
  style c144f601_7c5e_30b9_1dfb_840d2098c59b fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

src/async.ts lines 325–335

  async generateDomainGraph(
    file: Blob,
    options?: GraphRequestOptions
  ): Promise<DomainClassificationResponse> {
    const key = options?.idempotencyKey || this.generateIdempotencyKey();
    const pollOptions = options?.signal ? { ...this.options, signal: options.signal } : this.options;
    return pollUntilComplete<DomainClassificationResponse, DomainClassificationResponseAsync>(
      () => this.api.generateDomainGraph({ idempotencyKey: key, file }, options?.initOverrides),
      pollOptions
    );
  }

Domain

Subdomains

Frequently Asked Questions

What does generateDomainGraph() do?
generateDomainGraph() is a function in the typescript-sdk codebase.
What does generateDomainGraph() call?
generateDomainGraph() calls 1 function(s): generateDomainGraph.

Analyze Your Own Codebase

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

Try Supermodel Free