apoc.meta
Qualified Name | Type |
---|---|
apoc.meta.data({config}) - examines a subset of the graph to provide a tabular meta information |
Procedure |
apoc.meta.graph - examines the full graph to create the meta-graph |
Procedure |
apoc.meta.graphSample() - examines the database statistics to build the meta graph, very fast, might report extra relationships |
Procedure |
apoc.meta.nodeTypeProperties() |
Procedure |
apoc.meta.relTypeProperties() |
Procedure |
apoc.meta.schema({config}) - examines a subset of the graph to provide a map-like meta information |
Procedure |
apoc.meta.stats yield labelCount, relTypeCount, propertyKeyCount, nodeCount, relCount, labels, relTypes, stats | returns the information stored in the transactional database statistics |
Procedure |
apoc.meta.subGraph({labels:[labels],rels:[rel-types], excludes:[labels,rel-types]}) - examines a sample sub graph to create the meta-graph |
Procedure |
apoc.meta.isType(value,type) - returns a row if type name matches none if not (INTEGER,FLOAT,STRING,BOOLEAN,RELATIONSHIP,NODE,PATH,NULL,UNKNOWN,MAP,LIST) |
Function |
apoc.meta.type(value) - type name of a value (INTEGER,FLOAT,STRING,BOOLEAN,RELATIONSHIP,NODE,PATH,NULL,UNKNOWN,MAP,LIST) |
Function |
apoc.meta.typeName(value) - type name of a value (INTEGER,FLOAT,STRING,BOOLEAN,RELATIONSHIP,NODE,PATH,NULL,UNKNOWN,MAP,LIST) |
Function |
apoc.meta.types(node-relationship-map) - returns a map of keys to types |
Function |