Member Junction
    Preparing search index...

    Fully-parsed result of a GenerateSeedTaxonomy mutation.

    The transport helper parses the JSON-string field (NodesJSON) returned by the server back into the typed Nodes property so consumers never deal with raw JSON strings.

    interface SeedTaxonomyResult {
        ErrorMessage?: string;
        Method?: string;
        Nodes: SeedTaxonomyNode[];
        SampleSize: number;
        Success: boolean;
    }
    Index

    Properties

    ErrorMessage?: string

    Error message when Success is false.

    Method?: string

    How the taxonomy was produced: 'clustering' or 'prompt-fallback'.

    Parsed, NON-persisted proposed tag tree.

    SampleSize: number

    Number of content items sampled / considered.

    Success: boolean

    Whether the taxonomy generation succeeded.