UNPKG

@neo4j/cypher-builder

Version:

A programmatic API for building Cypher queries for Neo4j

16 lines (15 loc) 508 B
import { CypherFunction } from "../../expressions/functions/CypherFunctions"; import type { Expr } from "../../types"; /** * @group Functions * @see [Apoc Documentation](https://neo4j.com/docs/apoc/current/overview/apoc.date/apoc.date.convertFormat/) * @example * ```ts * Cypher.apoc.date.convertFormat( * new Cypher.Param("2020-11-04"), * "date", * "basic_date" * ) *``` */ export declare function convertFormat(temporalParam: Expr, currentFormat: string, convertTo?: string): CypherFunction;