@jss-rule-engine/core
Version:
Rule engine for Sitecore JSS
12 lines (11 loc) • 452 B
TypeScript
import { IItemProvider } from './itemProvider';
export declare class GraphQLItemProvider implements IItemProvider {
endpointUrl: any;
apiKey: any;
cache: Map<string, any>;
constructor(options: any);
getItemAncestorInfoById(itemId: string): Promise<any>;
getItemDescendantsInfoById(itemId: string): Promise<any>;
getItemById(itemId: string): Promise<any>;
runQuery(query: any, variables: any): Promise<any>;
}