apoc.search.multiSearchReduced

Procedure

apoc.search.multiSearchReduced(labelPropertyMap ANY, operator STRING, value STRING) - returns a reduced representation of the NODE values found after a parallel search over multiple indexes. The reduced NODE values representation includes: node id, node labels, and the searched properties.

This procedure is not considered safe to run from multiple threads. It is therefore not supported by the parallel runtime (introduced in Neo4j 5.13). For more information, see the Cypher Manual → Parallel runtime.

Signature

apoc.search.multiSearchReduced(LabelPropertyMap :: ANY, operator :: STRING, value :: STRING) :: (id :: INTEGER, labels :: LIST<STRING>, values :: MAP)

Input parameters

Name Type Default

LabelPropertyMap

ANY

null

operator

STRING

null

value

STRING

null

Output parameters

Name Type

id

INTEGER

labels

LIST<STRING>

values

MAP