You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By executing MATCH (n:Employee) RETURN valueType(n.birthDate),
we can see that the property BirthDate is returned as a string, instead of a LOCAL DATETIME
The text was updated successfully, but these errors were encountered:
Create a docker-compose.yml
And a
mysql-dump/northwind.sql
file:And execute
docker-compose up -d
.Then we can execute:
and finally:
By executing
MATCH (n:Employee) RETURN valueType(n.birthDate)
,we can see that the property
BirthDate
is returned as a string, instead of aLOCAL DATETIME
The text was updated successfully, but these errors were encountered: