snellad1
(Snellad1)
1
Hi,
I would like to create a query that returns a table with the following that have been unwound:
- node label, 2. property, 3. property value, 4. property value data type
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)
1 Like
Kailash
(Kailash)
3
how would it give all the property in a node/label and its data type? could you help.. i have similar requirement