apoc.map.submap

Function

apoc.map.submap(map Map<String, Any>, keys [String], values [Any], fail Boolean) - returns a sub-map for the given keys. If one of the keys does not exist, or lacks a default value, this function will throw an exception.

Signature

apoc.map.submap(map :: MAP?, keys :: LIST? OF STRING?, values = [] :: LIST? OF ANY?, fail = true :: BOOLEAN?) :: (MAP?)

Input parameters

Name Type Default

map

MAP?

null

keys

LIST? OF STRING?

null

values

LIST? OF ANY?

[]

fail

BOOLEAN?

true

Usage Examples

The following returns a map containing only the key a:

RETURN apoc.map.submap({a:1,b:1},['a']) AS output;
Table 1. Results
Output

{a: 1}

The following throw an exception because the map doesn’t contain the key c:

RETURN apoc.map.submap({a:1,b:1},['c']) AS output;
Table 2. Results

Failed to invoke function apoc.map.submap: Caused by: java.lang.IllegalArgumentException: Key c is not of one of the existing keys [a, b]

The following returns a map containing a default value of 42 for the missing key c:

RETURN apoc.map.submap({a:1,b:1},['c'], [42]) AS output;
Table 3. Results
Output

{c: 42}

The following returns a map containing a null value for the missing key c:

RETURN apoc.map.submap({a:1,b:1},['c'], null, false) AS output;
Table 4. Results
Output

{c: NULL}