Skip to main content

Api Decorator

Api

Resolver param decorator which returns which Api the request came though. This is useful because sometimes the same resolver will have different behaviour depending whether it is being called from the shop API or the admin API.

Returns a string of type ApiType.

Example

 @Query()
getAdministrators(@Api() apiType: ApiType) {
if (apiType === 'admin') {
// ...
}
}