@fourlights/strapi-plugin-deep-populate
Version:
This plugin provides a simple way of retrieving all nested objects in a single request.
5 lines (4 loc) • 437 B
TypeScript
import type { Database } from "@strapi/database";
export declare function hasDeepPopulateCacheFullTextIndex(db: Database, tableName: string, columnName: string): Promise<boolean>;
export declare function addDeepPopulateCacheFullTextIndex(db: Database, tableName: string, columnName: string): Promise<void>;
export declare function removeDeepPopulateCacheFullTextIndex(db: Database, tableName: string, columnName: string): Promise<void>;