@kontent-ai/delivery-sdk
Version:
Official Kontent.AI Delivery API SDK
25 lines • 916 B
JavaScript
import { BaseQuery } from '../common/base-query.class';
export class SingleTypeQuery extends BaseQuery {
constructor(config, queryService, typeCodename) {
super(config, queryService);
this.config = config;
this.queryService = queryService;
this.typeCodename = typeCodename;
this._queryConfig = {};
if (!typeCodename) {
throw Error(`Cannot create type query without the codename of the type`);
}
}
toPromise() {
var _a;
return this.queryService.getSingleType(this.getUrl(), (_a = this._queryConfig) !== null && _a !== void 0 ? _a : {});
}
getUrl() {
const action = '/types/' + this.typeCodename;
return super.resolveUrlInternal(action);
}
map(json) {
return this.queryService.mappingService.viewContentTypeResponse(json);
}
}
//# sourceMappingURL=single-type-query.class.js.map