@kontent-ai/management-sdk
Version:
Official Kontent.ai management SDK
41 lines (35 loc) • 1.47 kB
text/typescript
import { IManagementClientConfig } from '../config';
import { Identifiers } from '../models';
import { ManagementQueryService } from '../services';
export class TaxonomyIdentifierQuery<TResult> {
constructor(
protected config: IManagementClientConfig,
protected queryService: ManagementQueryService,
protected buildResult: (
config: IManagementClientConfig,
queryService: ManagementQueryService,
identifier: Identifiers.TaxonomyIdentifier) => TResult
) {
}
/**
* Gets using internal Id
* @param id Internal Id of content item
*/
byTaxonomyId(id: string): TResult {
return this.buildResult(this.config, this.queryService, new Identifiers.TaxonomyIdentifier(Identifiers.TaxonomyIdentifierEnum.InternalId, id));
}
/**
* Gets query using external Id
* @param id External Id of content item
*/
byTaxonomyExternalId(id: string): TResult {
return this.buildResult(this.config, this.queryService, new Identifiers.TaxonomyIdentifier(Identifiers.TaxonomyIdentifierEnum.ExternalId, id));
}
/**
* Gets query using codename
* @param codename Codename of content item
*/
byTaxonomyCodename(codename: string): TResult {
return this.buildResult(this.config, this.queryService, new Identifiers.TaxonomyIdentifier(Identifiers.TaxonomyIdentifierEnum.Codename, codename));
}
}