There is no built in way to get those. You can use apoc.meta.type of the apoc library for that:
https://neo4j-contrib.github.io/neo4j-apoc-procedures/#_meta_graph <https://neo4j-contrib.github.io/neo4j-apoc-procedures/#_meta_graph> match (n) WITH n LIMIT 1 unwind keys(n) as key call apoc.meta.type(n[key]) yield value as type return key, n[key] as value, type > Am 24.08.2016 um 22:22 schrieb Sukaant Chaudhary > <[email protected]>: > > Hi Michael, > I'm not sure which method will help me to get the datatypes used in the > properties of the nodes (like: String, long, boolean, etc). > Also, please let me know, if it is possible to check in the browser. > > On Wednesday, August 24, 2016, 'Michael Hunger' via Neo4j > <[email protected] <mailto:[email protected]>> wrote: > > https://github.com/neo4j/neo4j/blob/2.3/community/kernel/src/main/java/org/neo4j/kernel/impl/store/NodeStore.java#L183 > > > > <https://github.com/neo4j/neo4j/blob/2.3/community/kernel/src/main/java/org/neo4j/kernel/impl/store/NodeStore.java#L183> > > > > Am 24.08.2016 um 20:54 schrieb Sukaant Chaudhary > > <[email protected] <mailto:[email protected]>>: > > Hi, > > I want to know the structure of the node alongwith the datatypes used for > > each properties in that node in version 2.3. > > Any help will be appreciated. > > > > -- > > -Sukaant Chaudhary > > <image004.png> > > > > > > -- > > You received this message because you are subscribed to the Google Groups > > "Neo4j" group. > > To unsubscribe from this group and stop receiving emails from it, send an > > email to [email protected] > > <mailto:neo4j%[email protected]>. > > For more options, visit https://groups.google.com/d/optout > > <https://groups.google.com/d/optout>. > > > > -- > > You received this message because you are subscribed to the Google Groups > > "Neo4j" group. > > To unsubscribe from this group and stop receiving emails from it, send an > > email to [email protected] > > <mailto:neo4j%[email protected]>. > > For more options, visit https://groups.google.com/d/optout > > <https://groups.google.com/d/optout>. > > > > -- > -Sukaant Chaudhary > <image004.png> <http://in.linkedin.com/pub/sukaant-chaudhary/33/ba8/479> > > > -- > You received this message because you are subscribed to the Google Groups > "Neo4j" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected] > <mailto:[email protected]>. > For more options, visit https://groups.google.com/d/optout > <https://groups.google.com/d/optout>. -- You received this message because you are subscribed to the Google Groups "Neo4j" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
