@directus/api
Version:
Directus is a real-time API and App dashboard for managing SQL database content
13 lines (12 loc) • 323 B
TypeScript
/**
* Takes in a column name, and transforms the original name with the generated column name based on
* the applied function.
*
* @example
*
* ```js
* applyFunctionToColumnName('year(date_created)');
* // => "date_created_year"
* ```
*/
export declare function applyFunctionToColumnName(column: string): string;