QueryOptions

Interface defining options that can be passed to @Query() decorator.


type QueryOptions<T = any> = BaseTypeOptions<T> & {
    name?: string;
    description?: string;
    deprecationReason?: string;
    complexity?: Complexity;
};