Function
Query
(
property?: string | (Type<PipeTransform> | PipeTransform),
...pipes: (Type<PipeTransform> | PipeTransform)[]
)
Source from the content-addressed store, hash-verified
| 406 | * @publicApi |
| 407 | */ |
| 408 | export function Query( |
| 409 | property?: string | (Type<PipeTransform> | PipeTransform), |
| 410 | ...pipes: (Type<PipeTransform> | PipeTransform)[] |
| 411 | ): ParameterDecorator { |
| 412 | return createPipesRouteParamDecorator(RouteParamtypes.QUERY)( |
| 413 | property, |
| 414 | ...pipes, |
| 415 | ); |
| 416 | } |
| 417 | |
| 418 | /** |
| 419 | * Route handler parameter decorator. Extracts the entire `body` |