Join the free virtual developer conference on knowledge graphs and AI. This year's themes are: applications, AI engineering, data intelligence, graphs, and architecture.
Hi,
I would like to create a query that returns a table with the following that have been unwound:
Currently my model contains the following data types: string, integer, float, boolean.
Thank you.
I think you need APOC to help you here, specifically ``` apoc.meta.type()
MATCH (n) RETURN apoc.meta.type(n.property)
how would it give all the property in a node/label and its data type? could you help.. i have similar requirement