Meta Graph
Returns a virtual graph that represents the labels and relationship-types available in your database and how they are connected.
Qualified Name | Type | Release |
---|---|---|
|
|
|
|
|
|
`apoc.meta.graph.of({graph}, {config}) ` - examines a subset of the graph to provide a graph meta information |
|
|
|
|
|
`apoc.meta.data({config}) ` - examines a subset of the graph to provide a tabular meta information |
|
|
`apoc.meta.schema({config}) ` - examines a subset of the graph to provide a map-like meta information |
|
|
|
|
|
|
|
|
|
|
|
Qualified Name | Type | Release |
---|---|---|
|
|
|
|
|
|
`apoc.meta.cypher.types(node-relationship-map) ` - returns a map of keys to types |
|
|
In the case of LIST
you may have many results, depending on the content. In the event that all contents are of the same type, will you have the LIST OF <TYPE>
, otherwise if the type is different, will you get LIST OF ANY
If no type was found, the function return name of the class.
|
type name of a value ( |
|
returns a row if type name matches none if not |
|
returns a a map of property-keys to their names |
If no type was found, the function return name of the class.
MATCH (n:Person)
RETURN apoc.meta.isType(n.age,"INTEGER") as ageType