Skip to main content
Version: Latest

GenSearchMutation

description

Initiates GenSearch operations with different processing depths.

type GenSearchMutation {
fast(
input: GenSearchInput!
): GenSearchResult
thinkLonger(
input: GenSearchInput!
): GenSearchResult
deepResearch(
input: GenSearchInput!
): GenSearchResult
}

Fields

GenSearchMutation.fast ● GenSearchResult object graph-ql-types

Standard GenSearch with balanced speed and thoroughness. @exposed

GenSearchMutation.fast.input ● GenSearchInput! non-null input graph-ql-types

GenSearchMutation.thinkLonger ● GenSearchResult object graph-ql-types

Enhanced GenSearch with extended reasoning for complex queries. @exposed

GenSearchMutation.thinkLonger.input ● GenSearchInput! non-null input graph-ql-types

GenSearchMutation.deepResearch ● GenSearchResult object graph-ql-types

Comprehensive GenSearch with thorough analysis and extensive research. @exposed

GenSearchMutation.deepResearch.input ● GenSearchInput! non-null input graph-ql-types

Returned By

genSearch mutation