RegisteredQueryHandler interface
Home > @cbnsndwch/nest-zero-synced-queries > RegisteredQueryHandler
RegisteredQueryHandler interface
Registered query handler with metadata and execution context.
Signature:
export interface RegisteredQueryHandlerProperties
Property
Modifiers
Type
Description
(request: any, ...args: any[]) => Promise<AST>
Execute the handler with proper context. Executes guards, resolves parameters, then calls the handler.
Type<CanActivate>[]
Guards to execute before the handler (class-level and method-level).
The handler function to execute (bound to provider instance).
Metadata about the query (name, schema, auth requirements).
string
The name of the method on the provider.
Parameter metadata for dependency injection.
any
The provider instance that owns this handler.
How was this page?