rafsun42 commented on PR #1138:
URL: https://github.com/apache/age/pull/1138#issuecomment-1775765429
@Allison-E
I did not find `date` function in the openCypher specification (your link
refers to Neo4J doc, not openCypher).
Also, I was able to achieve the result using a PG function. Do you think we
should add another implementaiton of date while we can use PG's?
```
(pg-15.4) agedev=# SELECT TO_DATE(today, 'YYYY/MM/DD') FROM cypher('graph',
$$
RETURN pg_catalog.now()
$$) as (today text);
to_date
------------
2023-10-23
(1 row)
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]