I'm using the Neo4j GraphQL library and I'm new at this. I successfully created a schema and some nodes of type event. The event nodes have a field called startTime which is defined as a DateTime in my schema:
type Event {
id: ...
OK, the problem was that I missed the database requirements and I didn't understand that APOC is a database plugin.
The solution is here: https://github.com/neo4j/graphql/issues/941#issuecomment-1031856171
I've suggested docs changes to clarify this:...
Have you installed the APOC library?
I tried installing it, with no effect. The error says it is an internal server error so I figured there must be something wrong with the input.
I think extra field timezone should be added
Do you have an examp...