Member Junction
    Preparing search index...

    Client for generating a seed tag taxonomy on the server through GraphQL.

    The taxonomy-proposal pipeline (sampling a content source and proposing a tag tree, optionally via clustering or an LLM prompt fallback) runs server-side (via @memberjunction/tag-engine); this client is a thin, strongly-typed transport that sends the GenerateSeedTaxonomy mutation and parses the JSON-string field back into typed objects.

    Follows the same naming + construction convention as the other GraphQL clients in this package (GraphQLClusterClient, GraphQLAIClient, etc.).

    const classifyClient = new GraphQLClassifyClient(graphQLProvider);
    const result = await classifyClient.GenerateSeedTaxonomy({
    SourceID: 'some-content-source-id',
    SampleSize: 50,
    });
    if (result.Success) {
    console.log('Method:', result.Method);
    console.log('Nodes:', result.Nodes.length);
    } else {
    console.error(result.ErrorMessage);
    }
    Index

    Constructors

    Methods

    Constructors

    Methods