apoc.meta

Qualified Name Type

apoc.meta.data(config Map<String, Any>) - examines the full graph and returns a table of metadata.

Procedure

apoc.meta.data.of(graph Any, config Map<String, Any>) - examines the given sub-graph and returns a table of metadata.

Procedure

apoc.meta.graph(config Map<String, Any>) - examines the full graph and returns a meta-graph.

Procedure

apoc.meta.graph.of(graph Any, config Map<String, Any>) - examines the given sub-graph and returns a meta-graph.

Procedure

apoc.meta.graphSample(config Map<String, Any>) - examines the full graph and returns a meta-graph. Unlike apoc.meta.graph, this procedure does not filter away non-existing paths.

Procedure

apoc.meta.nodeTypeProperties(config Map<String, Any>) - examines the full graph and returns a table of metadata with information about the nodes therein.

Procedure

apoc.meta.relTypeProperties(config Map<String, Any>) - examines the full graph and returns a table of metadata with information about the relationships therein.

Procedure

apoc.meta.schema(config Map<String, Any>) - examines the given sub-graph and returns metadata as a map.

Procedure

apoc.meta.stats() - returns the metadata stored in the transactional database statistics.

Procedure

apoc.meta.subGraph(config Map<String, Any>) - examines the given sub-graph and returns a meta-graph.

Procedure

apoc.meta.cypher.isType(value Any, type String) - returns true if the given value matches the given type.

Function

apoc.meta.cypher.type(value Any) - returns the type name of the given value.

Function

apoc.meta.cypher.types(props Any) - returns a map containing the type names of the given values.

Function

apoc.meta.nodes.count(nodes [String], config Map<String, Any>) - returns the sum of the nodes with the given labels in the list.

Function