ℹ️ Skipped - page is already crawled
| Filter | Status | Condition | Details |
|---|---|---|---|
| HTTP status | PASS | download_http_code = 200 | HTTP 200 |
| Age cutoff | PASS | download_stamp > now() - 6 MONTH | 0.1 months ago |
| History drop | PASS | isNull(history_drop_reason) | No drop reason |
| Spam/ban | PASS | fh_dont_index != 1 AND ml_spam_score = 0 | ml_spam_score=0 |
| Canonical | PASS | meta_canonical IS NULL OR = '' OR = src_unparsed | Not set |
| Property | Value |
|---|---|
| URL | https://neo4j.com/labs/apoc/4.1/data-structures/collection-list-functions/ |
| Last Crawled | 2026-04-04 06:59:53 (4 days ago) |
| First Indexed | 2020-08-19 01:48:28 (5 years ago) |
| HTTP Status Code | 200 |
| Meta Title | Collection Functions - APOC Extended Documentation |
| Meta Description | This section describes functions and procedures for working with collections and lists. |
| Meta Canonical | null |
| Boilerpipe Text | apoc.coll.sum([0.5,1,2.3])
sum of all values in a list
apoc.coll.avg([0.5,1,2.3])
avg of all values in a list
apoc.coll.min([0.5,1,2.3])
minimum of all values in a list
apoc.coll.max([0.5,1,2.3])
maximum of all values in a list
apoc.coll.sumLongs([1,3,3])
sums all numeric values in a list
apoc.coll.partition(list,batchSize)
partitions a list into sublists of
batchSize
apoc.coll.zip([list1],[list2])
all values in a list
apoc.coll.pairs([1,2,3]) YIELD value
[1,2],[2,3],[3,null]
apoc.coll.pairsMin([1,2,3]) YIELD value
[1,2],[2,3]
apoc.coll.toSet([list])
returns a unique list backed by a set
apoc.coll.sort(coll)
sort on Collections
apoc.coll.sortNodes([nodes], 'name')
sort nodes by property, ascending sorting by adding ^ in front of the sorting field
apoc.coll.sortMaps([maps], 'key')
sort maps by map key, ascending sorting by adding ^ in front of the sorting field
apoc.coll.reverse(coll)
returns the reversed list
apoc.coll.contains(coll, value)
returns true if collection contains the value
apoc.coll.containsAll(coll, values)
optimized contains-all operation (using a HashSet) returns true or false
apoc.coll.containsSorted(coll, value)
optimized contains on a sorted list operation (Collections.binarySearch) (returns true or false)
apoc.coll.containsAllSorted(coll, value)
optimized contains-all on a sorted list operation (Collections.binarySearch) (returns true or false)
apoc.coll.isEqualCollection(coll, values)
return true if two collections contain the same elements with the same cardinality in any order (using a HashMap)
apoc.coll.union(first, second)
creates the distinct union of the 2 lists
apoc.coll.unionAll(first, second)
creates the full union with duplicates of the two lists
apoc.coll.subtract(first, second)
returns unique set of first list with all elements of second list removed
apoc.coll.removeAll(first, second)
returns first list with all elements of second list removed
apoc.coll.intersection(first, second)
returns the unique intersection of the two lists
apoc.coll.disjunction(first, second)
returns the disjunct set of the two lists
apoc.coll.split(list,value)
splits collection on given values rows of lists, value itself will not be part of resulting lists
apoc.coll.indexOf(coll, value)
position of value in the list
apoc.coll.shuffle(coll)
returns the shuffled list
apoc.coll.randomItem(coll)
returns a random item from the list
apoc.coll.randomItems(coll, itemCount, allowRepick: false)
returns a list of
itemCount
random items from the list, optionally allowing picked elements to be picked again
apoc.coll.containsDuplicates(coll)
returns true if a collection contains duplicate elements
apoc.coll.duplicates(coll)
returns a list of duplicate items in the collection
apoc.coll.duplicatesWithCount(coll)
returns a list of duplicate items in the collection and their count, keyed by
item
and
count
(e.g.,
[{item: xyz, count:2}, {item:zyx, count:5}]
)
apoc.coll.occurrences(coll, item)
returns the count of the given item in the collection
apoc.coll.frequencies(coll)
returns a list of frequencies of the items in the collection, keyed by
item
and
count
(e.g.,
[{item: xyz, count:2}, {item:zyx, count:5}, {item:abc, count:1}]
)
apoc.coll.frequenciesAsMap(coll)
return a map of frequencies of the items in the collection, keyed by
item
and
count
(e.g.,
{1: 2, 3: 2}
)
apoc.coll.sortMulti
sort list of maps by several sort fields (ascending with ^ prefix) and optionally applies limit and skip
apoc.coll.flatten
flattens a nested list
apoc.coll.combinations(coll, minSelect, maxSelect:minSelect)
Returns collection of all combinations of list elements of selection size between minSelect and maxSelect (default:minSelect), inclusive
CALL apoc.coll.elements(list,limit,offset) yield _1,_2,..,_10,_1s,_2i,_3f,_4m,_5l,_6n,_7r,_8p
deconstruct subset of mixed list into identifiers of the correct type
apoc.coll.set(coll, index, value)
set index to value
apoc.coll.insert(coll, index, value)
insert value at index
apoc.coll.insertAll(coll, index, values)
insert values at index
apoc.coll.remove(coll, index, [length=1])
remove range of values from index to length
apoc.coll.different(values)
returns true if value are different
apoc.coll.fill(item, count)
returns a list with the given count of items
apoc.coll.sortText(coll, conf)
sort on string based collections
apoc.coll.pairWithOffset(values, offset)
returns a list of pairs defined by the offset |
| Markdown | [](https://neo4j.com/) [Labs](https://neo4j.com/labs/)
[Docs](https://neo4j.com/docs/)
Neo4j DBMS
- [Getting Started](https://neo4j.com/docs/getting-started/current/)
- [Operations](https://neo4j.com/docs/operations-manual/current/)
- [Migration and Upgrade](https://neo4j.com/docs/migration-guide/current/)
- [Status Codes](https://neo4j.com/docs/status-codes/current/)
- [Java Reference](https://neo4j.com/docs/java-reference/current/)
- [Kerberos Add-on](https://neo4j.com/docs/kerberos-add-on/current/)
[Neo4j Aura](https://neo4j.com/docs/aura/)
Neo4j Tools
- [Neo4j Bloom](https://neo4j.com/docs/bloom-user-guide/current/)
- [Neo4j Browser](https://neo4j.com/docs/browser/)
- [Neo4j Data Importer](https://neo4j.com/docs/data-importer/current/)
- [Neo4j Desktop](https://neo4j.com/docs/desktop-manual/current/)
- [Neo4j Ops Manager](https://neo4j.com/docs/ops-manager/current/)
- [Neodash commercial](https://neo4j.com/docs/neodash-commercial/current/)
Neo4j Graph Data Science
- [Neo4j Graph Data Science Library](https://neo4j.com/docs/graph-data-science/current/)
- [Neo4j Graph Data Science Client](https://neo4j.com/docs/graph-data-science-client/current/)
Cypher Query Language
- [Cypher](https://neo4j.com/docs/cypher-manual/current/)
- [Cypher Cheat Sheet](https://neo4j.com/docs/cypher-cheat-sheet/current/)
- [APOC Library](https://neo4j.com/docs/apoc/current/)
Generative AI
- [Neo4j GraphRAG for Python](https://neo4j.com/docs/neo4j-graphrag-python/current/)
- [Embeddings and vector indexes tutorial](https://neo4j.com/docs/genai/tutorials/embeddings-vector-indexes/)
- [GenAI integrations](https://neo4j.com/docs/cypher-manual/current/genai-integrations/)
- [Vector search indexes](https://neo4j.com/docs/cypher-manual/current/indexes/semantic-indexes/vector-indexes/)
- [Vector search functions](https://neo4j.com/docs/cypher-manual/current/functions/vector/)
- [GraphQL vector index search documentation](https://neo4j.com/docs/graphql/5/directives/indexes-and-constraints/#_vector_index_search)
Create applications
- [Python Driver](https://neo4j.com/docs/python-manual/current/)
- [Go Driver](https://neo4j.com/docs/go-manual/current/)
- [Java Driver](https://neo4j.com/docs/java-manual/current/)
- [JDBC Driver](https://neo4j.com/docs/jdbc-manual/current/)
- [JavaScript Driver](https://neo4j.com/docs/javascript-manual/current/)
- [.Net Driver](https://neo4j.com/docs/dotnet-manual/current/)
- [Neo4j GraphQL Library](https://neo4j.com/docs/graphql-manual/current/)
- [Neo4j Visualization Library](https://neo4j.com/docs/nvl/current/)
- [OGM Library](https://neo4j.com/docs/ogm-manual/current/)
- [Spring Data Neo4j](https://docs.spring.io/spring-data/neo4j/docs/current/reference/html/#reference)
- [HTTP API](https://neo4j.com/docs/http-api/current/)
- [Neo4j Query API](https://neo4j.com/docs/query-api/current/)
- [Bolt](https://neo4j.com/docs/bolt/current/)
Connect data sources
- [Neo4j Connector for Apache Spark](https://neo4j.com/docs/spark/current/)
- [Neo4j Connector for Apache Kafka](https://neo4j.com/docs/kafka/)
- [Change Data Capture (CDC)](https://neo4j.com/docs/cdc/)
- [BigQuery to Neo4j](https://neo4j.com/docs/dataflow-bigquery/)
- [Google Cloud to Neo4j](https://neo4j.com/docs/dataflow-google-cloud/)
[Labs](https://neo4j.com/labs/)
[GenAI Ecosystem](https://neo4j.com/labs/genai-ecosystem/)
- [LLM Knowledge Graph Builder](https://neo4j.com/labs/genai-ecosystem/llm-graph-builder/)
- [Vector Index & Search](https://neo4j.com/labs/genai-ecosystem/vector-search/)
- [LangChain](https://neo4j.com/labs/genai-ecosystem/langchain/)
- [LangChain.js](https://neo4j.com/labs/genai-ecosystem/langchain-js/)
- [LlamaIndex](https://neo4j.com/labs/genai-ecosystem/llamaindex/)
- [Haystack](https://neo4j.com/labs/genai-ecosystem/haystack/)
- [DSPy](https://neo4j.com/labs/genai-ecosystem/dspy/)
**Developer Tools**
- [APOC Extended](https://neo4j.com/labs/apoc/)
- [Aura CLI](https://neo4j.com/labs/aura-cli/)
- [arrows.app](https://neo4j.com/labs/arrows/)
- [Cypher Workbench](https://neo4j.com/labs/cypher-workbench/)
- [ETL Tool](https://neo4j.com/labs/etl-tool/)
- [NeoDash](https://neo4j.com/labs/neodash/)
**Frameworks & Integrations**
- [Needle Starter Kit](https://neo4j.com/labs/neo4j-needle-starterkit/)
- [Neo4j Plugin for Liquibase](https://neo4j.com/labs/liquibase/)
- [Neo4j Migrations](https://neo4j.com/labs/neo4j-migrations/)
- [neomodel](https://neo4j.com/labs/neomodel/)
[RDF & Linked Data](https://neo4j.com/labs/neosemantics/)
- [Neosemantics (Java)](https://neo4j.com/labs/neosemantics/)
- [RDFLib-Neo4j (Python)](https://neo4j.com/labs/rdflib-neo4j/)
[Get Help](https://neo4j.com/developer/resources/)
[Community Forum](https://dev.neo4j.com/forum)
[Discord Chat](https://dev.neo4j.com/chat)
[Product Support](http://support.neo4j.com/)
[Neo4j Developer Blog](https://neo4j.com/blog/developer/)
[Neo4j Videos](https://neo4j.com/videos/)
[GraphAcademy](https://graphacademy.neo4j.com/?ref=docs-nav)
[Beginners Courses](https://graphacademy.neo4j.com/categories/beginners/?ref=docs-nav)
- [Neo4j Fundamentals](https://graphacademy.neo4j.com/courses/neo4j-fundamentals/?ref=docs-nav)
- [Cypher Fundamentals](https://graphacademy.neo4j.com/courses/cypher-fundamentals/?ref=docs-nav)
- [Importing Data Fundamentals](https://graphacademy.neo4j.com/courses/importing-fundamentals/?ref=docs-nav)
- [Importing CSV Data](https://graphacademy.neo4j.com/courses/importing-csv-data/?ref=docs-nav)
- [Graph Data Modeling](https://graphacademy.neo4j.com/courses/modeling-fundamentals/?ref=docs-nav)
[Data Scientist Courses](https://graphacademy.neo4j.com/categories/data-scientist/?ref=docs-nav)
- [Into to Graph Data Science](https://graphacademy.neo4j.com/courses/gds-product-introduction/?ref=docs-nav)
- [Graph Data Science Fundamentals](https://graphacademy.neo4j.com/courses/graph-data-science-fundamentals/?ref=docs-nav)
- [Path Finding](https://graphacademy.neo4j.com/courses/gds-shortest-paths/?ref=docs-nav)
[Generative AI Courses](https://graphacademy.neo4j.com/categories/llms/?ref=docs-nav)
- [Neo4j & LLM Fundamentals](https://graphacademy.neo4j.com/courses/llm-fundamentals/?ref=docs-nav)
- [Vector Indexes & Unstructured Data](https://graphacademy.neo4j.com/courses/llm-vectors-unstructured/?ref=docs-nav)
- [Build a Chatbot with Python](https://graphacademy.neo4j.com/courses/llm-chatbot-python/?ref=docs-nav)
- [Build a Chatbot with TypeScript](https://graphacademy.neo4j.com/courses/llm-chatbot-typescript/?ref=docs-nav)
[Neo4j Certification](https://graphacademy.neo4j.com/certification/?ref=docs-nav)
- [Neo4j Certified Professional](https://graphacademy.neo4j.com/certifications/neo4j-certification/?ref=docs-nav)
- [Neo4j Graph Data Science Certification](https://graphacademy.neo4j.com/certifications/gds-certification/?ref=docs-nav)
[Get Started Free](https://console.neo4j.io/?ref=docs-nav-get-started)
[Search](https://neo4j.com/labs/apoc/4.1/data-structures/collection-list-functions/#search)
[Skip to content](https://neo4j.com/labs/apoc/4.1/data-structures/collection-list-functions/#skip-to-content "Skip to content")
APOC Documentation
Product Version
- - [Overview](https://neo4j.com/labs/apoc/4.1/)
- [Introduction](https://neo4j.com/labs/apoc/4.1/introduction/)
- [Installation](https://neo4j.com/labs/apoc/4.1/installation/)
- [APOC Core](https://neo4j.com/labs/apoc/4.1/installation/#apoc-core)
- [Neo4j Desktop](https://neo4j.com/labs/apoc/4.1/installation/#neo4j-desktop)
- [Neo4j Server](https://neo4j.com/labs/apoc/4.1/installation/#neo4j-server)
- [Docker](https://neo4j.com/labs/apoc/4.1/installation/#docker)
- [Usage](https://neo4j.com/labs/apoc/4.1/usage/)
- [Built in Help](https://neo4j.com/labs/apoc/4.1/help/)
- [Procedures & Functions](https://neo4j.com/labs/apoc/4.1/overview/)
- [apoc](https://neo4j.com/labs/apoc/4.1/overview/apoc/)
- [apoc.case](https://neo4j.com/labs/apoc/4.1/overview/apoc/apoc.case/)
- [apoc.help](https://neo4j.com/labs/apoc/4.1/overview/apoc/apoc.help/)
- [apoc.when](https://neo4j.com/labs/apoc/4.1/overview/apoc/apoc.when/)
- [apoc.version](https://neo4j.com/labs/apoc/4.1/overview/apoc/apoc.version/)
- [apoc.agg](https://neo4j.com/labs/apoc/4.1/overview/apoc.agg/)
- [apoc.agg.first](https://neo4j.com/labs/apoc/4.1/overview/apoc.agg/apoc.agg.first/)
- [apoc.agg.graph](https://neo4j.com/labs/apoc/4.1/overview/apoc.agg/apoc.agg.graph/)
- [apoc.agg.last](https://neo4j.com/labs/apoc/4.1/overview/apoc.agg/apoc.agg.last/)
- [apoc.agg.maxItems](https://neo4j.com/labs/apoc/4.1/overview/apoc.agg/apoc.agg.maxItems/)
- [apoc.agg.median](https://neo4j.com/labs/apoc/4.1/overview/apoc.agg/apoc.agg.median/)
- [apoc.agg.minItems](https://neo4j.com/labs/apoc/4.1/overview/apoc.agg/apoc.agg.minItems/)
- [apoc.agg.nth](https://neo4j.com/labs/apoc/4.1/overview/apoc.agg/apoc.agg.nth/)
- [apoc.agg.percentiles](https://neo4j.com/labs/apoc/4.1/overview/apoc.agg/apoc.agg.percentiles/)
- [apoc.agg.product](https://neo4j.com/labs/apoc/4.1/overview/apoc.agg/apoc.agg.product/)
- [apoc.agg.slice](https://neo4j.com/labs/apoc/4.1/overview/apoc.agg/apoc.agg.slice/)
- [apoc.agg.statistics](https://neo4j.com/labs/apoc/4.1/overview/apoc.agg/apoc.agg.statistics/)
- [apoc.algo](https://neo4j.com/labs/apoc/4.1/overview/apoc.algo/)
- [apoc.algo.cover](https://neo4j.com/labs/apoc/4.1/overview/apoc.algo/apoc.algo.cover/)
- [apoc.any](https://neo4j.com/labs/apoc/4.1/overview/apoc.any/)
- [apoc.any.properties](https://neo4j.com/labs/apoc/4.1/overview/apoc.any/apoc.any.properties/)
- [apoc.any.property](https://neo4j.com/labs/apoc/4.1/overview/apoc.any/apoc.any.property/)
- [apoc.atomic](https://neo4j.com/labs/apoc/4.1/overview/apoc.atomic/)
- [apoc.atomic.add](https://neo4j.com/labs/apoc/4.1/overview/apoc.atomic/apoc.atomic.add/)
- [apoc.atomic.concat](https://neo4j.com/labs/apoc/4.1/overview/apoc.atomic/apoc.atomic.concat/)
- [apoc.atomic.insert](https://neo4j.com/labs/apoc/4.1/overview/apoc.atomic/apoc.atomic.insert/)
- [apoc.atomic.remove](https://neo4j.com/labs/apoc/4.1/overview/apoc.atomic/apoc.atomic.remove/)
- [apoc.atomic.subtract](https://neo4j.com/labs/apoc/4.1/overview/apoc.atomic/apoc.atomic.subtract/)
- [apoc.atomic.update](https://neo4j.com/labs/apoc/4.1/overview/apoc.atomic/apoc.atomic.update/)
- [apoc.bitwise](https://neo4j.com/labs/apoc/4.1/overview/apoc.bitwise/)
- [apoc.bitwise.op](https://neo4j.com/labs/apoc/4.1/overview/apoc.bitwise/apoc.bitwise.op/)
- [apoc.bolt](https://neo4j.com/labs/apoc/4.1/overview/apoc.bolt/)
- [apoc.bolt.execute](https://neo4j.com/labs/apoc/4.1/overview/apoc.bolt/apoc.bolt.execute/)
- [apoc.bolt.load](https://neo4j.com/labs/apoc/4.1/overview/apoc.bolt/apoc.bolt.load/)
- [apoc.bolt.load.fromLocal](https://neo4j.com/labs/apoc/4.1/overview/apoc.bolt/apoc.bolt.load.fromLocal/)
- [apoc.cluster](https://neo4j.com/labs/apoc/4.1/overview/apoc.cluster/)
- [apoc.cluster.graph](https://neo4j.com/labs/apoc/4.1/overview/apoc.cluster/apoc.cluster.graph/)
- [apoc.coll](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/)
- [apoc.coll.elements](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.elements/)
- [apoc.coll.pairWithOffset](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.pairWithOffset/)
- [apoc.coll.partition](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.partition/)
- [apoc.coll.split](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.split/)
- [apoc.coll.zipToRows](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.zipToRows/)
- [apoc.coll.avg](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.avg/)
- [apoc.coll.combinations](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.combinations/)
- [apoc.coll.contains](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.contains/)
- [apoc.coll.containsAll](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.containsAll/)
- [apoc.coll.containsAllSorted](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.containsAllSorted/)
- [apoc.coll.containsDuplicates](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.containsDuplicates/)
- [apoc.coll.containsSorted](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.containsSorted/)
- [apoc.coll.different](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.different/)
- [apoc.coll.disjunction](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.disjunction/)
- [apoc.coll.dropDuplicateNeighbors](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.dropDuplicateNeighbors/)
- [apoc.coll.duplicates](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.duplicates/)
- [apoc.coll.duplicatesWithCount](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.duplicatesWithCount/)
- [apoc.coll.fill](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.fill/)
- [apoc.coll.flatten](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.flatten/)
- [apoc.coll.frequencies](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.frequencies/)
- [apoc.coll.frequenciesAsMap](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.frequenciesAsMap/)
- [apoc.coll.indexOf](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.indexOf/)
- [apoc.coll.insert](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.insert/)
- [apoc.coll.insertAll](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.insertAll/)
- [apoc.coll.intersection](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.intersection/)
- [apoc.coll.isEqualCollection](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.isEqualCollection/)
- [apoc.coll.max](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.max/)
- [apoc.coll.min](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.min/)
- [apoc.coll.occurrences](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.occurrences/)
- [apoc.coll.pairWithOffset](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.pairWithOffset/)
- [apoc.coll.pairs](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.pairs/)
- [apoc.coll.pairsMin](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.pairsMin/)
- [apoc.coll.partition](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.partition/)
- [apoc.coll.randomItem](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.randomItem/)
- [apoc.coll.randomItems](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.randomItems/)
- [apoc.coll.remove](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.remove/)
- [apoc.coll.removeAll](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.removeAll/)
- [apoc.coll.reverse](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.reverse/)
- [apoc.coll.runningTotal](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.runningTotal/)
- [apoc.coll.set](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.set/)
- [apoc.coll.shuffle](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.shuffle/)
- [apoc.coll.sort](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.sort/)
- [apoc.coll.sortMaps](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.sortMaps/)
- [apoc.coll.sortMulti](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.sortMulti/)
- [apoc.coll.sortNodes](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.sortNodes/)
- [apoc.coll.sortText](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.sortText/)
- [apoc.coll.stdev](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.stdev/)
- [apoc.coll.subtract](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.subtract/)
- [apoc.coll.sum](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.sum/)
- [apoc.coll.sumLongs](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.sumLongs/)
- [apoc.coll.toSet](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.toSet/)
- [apoc.coll.union](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.union/)
- [apoc.coll.unionAll](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.unionAll/)
- [apoc.coll.zip](https://neo4j.com/labs/apoc/4.1/overview/apoc.coll/apoc.coll.zip/)
- [apoc.config](https://neo4j.com/labs/apoc/4.1/overview/apoc.config/)
- [apoc.config.list](https://neo4j.com/labs/apoc/4.1/overview/apoc.config/apoc.config.list/)
- [apoc.config.map](https://neo4j.com/labs/apoc/4.1/overview/apoc.config/apoc.config.map/)
- [apoc.convert](https://neo4j.com/labs/apoc/4.1/overview/apoc.convert/)
- [apoc.convert.setJsonProperty](https://neo4j.com/labs/apoc/4.1/overview/apoc.convert/apoc.convert.setJsonProperty/)
- [apoc.convert.toTree](https://neo4j.com/labs/apoc/4.1/overview/apoc.convert/apoc.convert.toTree/)
- [apoc.convert.fromJsonList](https://neo4j.com/labs/apoc/4.1/overview/apoc.convert/apoc.convert.fromJsonList/)
- [apoc.convert.fromJsonMap](https://neo4j.com/labs/apoc/4.1/overview/apoc.convert/apoc.convert.fromJsonMap/)
- [apoc.convert.getJsonProperty](https://neo4j.com/labs/apoc/4.1/overview/apoc.convert/apoc.convert.getJsonProperty/)
- [apoc.convert.getJsonPropertyMap](https://neo4j.com/labs/apoc/4.1/overview/apoc.convert/apoc.convert.getJsonPropertyMap/)
- [apoc.convert.toBoolean](https://neo4j.com/labs/apoc/4.1/overview/apoc.convert/apoc.convert.toBoolean/)
- [apoc.convert.toBooleanList](https://neo4j.com/labs/apoc/4.1/overview/apoc.convert/apoc.convert.toBooleanList/)
- [apoc.convert.toFloat](https://neo4j.com/labs/apoc/4.1/overview/apoc.convert/apoc.convert.toFloat/)
- [apoc.convert.toIntList](https://neo4j.com/labs/apoc/4.1/overview/apoc.convert/apoc.convert.toIntList/)
- [apoc.convert.toInteger](https://neo4j.com/labs/apoc/4.1/overview/apoc.convert/apoc.convert.toInteger/)
- [apoc.convert.toJson](https://neo4j.com/labs/apoc/4.1/overview/apoc.convert/apoc.convert.toJson/)
- [apoc.convert.toList](https://neo4j.com/labs/apoc/4.1/overview/apoc.convert/apoc.convert.toList/)
- [apoc.convert.toMap](https://neo4j.com/labs/apoc/4.1/overview/apoc.convert/apoc.convert.toMap/)
- [apoc.convert.toNode](https://neo4j.com/labs/apoc/4.1/overview/apoc.convert/apoc.convert.toNode/)
- [apoc.convert.toNodeList](https://neo4j.com/labs/apoc/4.1/overview/apoc.convert/apoc.convert.toNodeList/)
- [apoc.convert.toRelationship](https://neo4j.com/labs/apoc/4.1/overview/apoc.convert/apoc.convert.toRelationship/)
- [apoc.convert.toRelationshipList](https://neo4j.com/labs/apoc/4.1/overview/apoc.convert/apoc.convert.toRelationshipList/)
- [apoc.convert.toSet](https://neo4j.com/labs/apoc/4.1/overview/apoc.convert/apoc.convert.toSet/)
- [apoc.convert.toSortedJsonMap](https://neo4j.com/labs/apoc/4.1/overview/apoc.convert/apoc.convert.toSortedJsonMap/)
- [apoc.convert.toString](https://neo4j.com/labs/apoc/4.1/overview/apoc.convert/apoc.convert.toString/)
- [apoc.convert.toStringList](https://neo4j.com/labs/apoc/4.1/overview/apoc.convert/apoc.convert.toStringList/)
- [apoc.couchbase](https://neo4j.com/labs/apoc/4.1/overview/apoc.couchbase/)
- [apoc.couchbase.append](https://neo4j.com/labs/apoc/4.1/overview/apoc.couchbase/apoc.couchbase.append/)
- [apoc.couchbase.exists](https://neo4j.com/labs/apoc/4.1/overview/apoc.couchbase/apoc.couchbase.exists/)
- [apoc.couchbase.get](https://neo4j.com/labs/apoc/4.1/overview/apoc.couchbase/apoc.couchbase.get/)
- [apoc.couchbase.insert](https://neo4j.com/labs/apoc/4.1/overview/apoc.couchbase/apoc.couchbase.insert/)
- [apoc.couchbase.namedParamsQuery](https://neo4j.com/labs/apoc/4.1/overview/apoc.couchbase/apoc.couchbase.namedParamsQuery/)
- [apoc.couchbase.posParamsQuery](https://neo4j.com/labs/apoc/4.1/overview/apoc.couchbase/apoc.couchbase.posParamsQuery/)
- [apoc.couchbase.prepend](https://neo4j.com/labs/apoc/4.1/overview/apoc.couchbase/apoc.couchbase.prepend/)
- [apoc.couchbase.query](https://neo4j.com/labs/apoc/4.1/overview/apoc.couchbase/apoc.couchbase.query/)
- [apoc.couchbase.remove](https://neo4j.com/labs/apoc/4.1/overview/apoc.couchbase/apoc.couchbase.remove/)
- [apoc.couchbase.replace](https://neo4j.com/labs/apoc/4.1/overview/apoc.couchbase/apoc.couchbase.replace/)
- [apoc.couchbase.upsert](https://neo4j.com/labs/apoc/4.1/overview/apoc.couchbase/apoc.couchbase.upsert/)
- [apoc.create](https://neo4j.com/labs/apoc/4.1/overview/apoc.create/)
- [apoc.create.addLabels](https://neo4j.com/labs/apoc/4.1/overview/apoc.create/apoc.create.addLabels/)
- [apoc.create.node](https://neo4j.com/labs/apoc/4.1/overview/apoc.create/apoc.create.node/)
- [apoc.create.nodes](https://neo4j.com/labs/apoc/4.1/overview/apoc.create/apoc.create.nodes/)
- [apoc.create.relationship](https://neo4j.com/labs/apoc/4.1/overview/apoc.create/apoc.create.relationship/)
- [apoc.create.removeLabels](https://neo4j.com/labs/apoc/4.1/overview/apoc.create/apoc.create.removeLabels/)
- [apoc.create.removeProperties](https://neo4j.com/labs/apoc/4.1/overview/apoc.create/apoc.create.removeProperties/)
- [apoc.create.removeRelProperties](https://neo4j.com/labs/apoc/4.1/overview/apoc.create/apoc.create.removeRelProperties/)
- [apoc.create.setLabels](https://neo4j.com/labs/apoc/4.1/overview/apoc.create/apoc.create.setLabels/)
- [apoc.create.setProperties](https://neo4j.com/labs/apoc/4.1/overview/apoc.create/apoc.create.setProperties/)
- [apoc.create.setProperty](https://neo4j.com/labs/apoc/4.1/overview/apoc.create/apoc.create.setProperty/)
- [apoc.create.setRelProperties](https://neo4j.com/labs/apoc/4.1/overview/apoc.create/apoc.create.setRelProperties/)
- [apoc.create.setRelProperty](https://neo4j.com/labs/apoc/4.1/overview/apoc.create/apoc.create.setRelProperty/)
- [apoc.create.uuids](https://neo4j.com/labs/apoc/4.1/overview/apoc.create/apoc.create.uuids/)
- [apoc.create.vNode](https://neo4j.com/labs/apoc/4.1/overview/apoc.create/apoc.create.vNode/)
- [apoc.create.vNodes](https://neo4j.com/labs/apoc/4.1/overview/apoc.create/apoc.create.vNodes/)
- [apoc.create.clonePathToVirtual](https://neo4j.com/labs/apoc/4.1/overview/apoc.create/apoc.create.clonePathToVirtual/)
- [apoc.create.clonePathsToVirtual](https://neo4j.com/labs/apoc/4.1/overview/apoc.create/apoc.create.clonePathsToVirtual/)
- [apoc.create.vPattern](https://neo4j.com/labs/apoc/4.1/overview/apoc.create/apoc.create.vPattern/)
- [apoc.create.vPatternFull](https://neo4j.com/labs/apoc/4.1/overview/apoc.create/apoc.create.vPatternFull/)
- [apoc.create.vRelationship](https://neo4j.com/labs/apoc/4.1/overview/apoc.create/apoc.create.vRelationship/)
- [apoc.create.virtualPath](https://neo4j.com/labs/apoc/4.1/overview/apoc.create/apoc.create.virtualPath/)
- [apoc.create.uuid](https://neo4j.com/labs/apoc/4.1/overview/apoc.create/apoc.create.uuid/)
- [apoc.create.vNode](https://neo4j.com/labs/apoc/4.1/overview/apoc.create/apoc.create.vNode/)
- [apoc.create.vRelationship](https://neo4j.com/labs/apoc/4.1/overview/apoc.create/apoc.create.vRelationship/)
- [apoc.create.virtual.fromNode](https://neo4j.com/labs/apoc/4.1/overview/apoc.create/apoc.create.virtual.fromNode/)
- [apoc.custom](https://neo4j.com/labs/apoc/4.1/overview/apoc.custom/)
- [apoc.custom.asFunction](https://neo4j.com/labs/apoc/4.1/overview/apoc.custom/apoc.custom.asFunction/)
- [apoc.custom.asProcedure](https://neo4j.com/labs/apoc/4.1/overview/apoc.custom/apoc.custom.asProcedure/)
- [apoc.custom.declareFunction](https://neo4j.com/labs/apoc/4.1/overview/apoc.custom/apoc.custom.declareFunction/)
- [apoc.custom.declareProcedure](https://neo4j.com/labs/apoc/4.1/overview/apoc.custom/apoc.custom.declareProcedure/)
- [apoc.custom.list](https://neo4j.com/labs/apoc/4.1/overview/apoc.custom/apoc.custom.list/)
- [apoc.custom.removeFunction](https://neo4j.com/labs/apoc/4.1/overview/apoc.custom/apoc.custom.removeFunction/)
- [apoc.custom.removeProcedure](https://neo4j.com/labs/apoc/4.1/overview/apoc.custom/apoc.custom.removeProcedure/)
- [apoc.cypher](https://neo4j.com/labs/apoc/4.1/overview/apoc.cypher/)
- [apoc.cypher.doIt](https://neo4j.com/labs/apoc/4.1/overview/apoc.cypher/apoc.cypher.doIt/)
- [apoc.cypher.mapParallel](https://neo4j.com/labs/apoc/4.1/overview/apoc.cypher/apoc.cypher.mapParallel/)
- [apoc.cypher.mapParallel2](https://neo4j.com/labs/apoc/4.1/overview/apoc.cypher/apoc.cypher.mapParallel2/)
- [apoc.cypher.parallel](https://neo4j.com/labs/apoc/4.1/overview/apoc.cypher/apoc.cypher.parallel/)
- [apoc.cypher.parallel2](https://neo4j.com/labs/apoc/4.1/overview/apoc.cypher/apoc.cypher.parallel2/)
- [apoc.cypher.run](https://neo4j.com/labs/apoc/4.1/overview/apoc.cypher/apoc.cypher.run/)
- [apoc.cypher.runFile](https://neo4j.com/labs/apoc/4.1/overview/apoc.cypher/apoc.cypher.runFile/)
- [apoc.cypher.runFiles](https://neo4j.com/labs/apoc/4.1/overview/apoc.cypher/apoc.cypher.runFiles/)
- [apoc.cypher.runMany](https://neo4j.com/labs/apoc/4.1/overview/apoc.cypher/apoc.cypher.runMany/)
- [apoc.cypher.runManyReadOnly](https://neo4j.com/labs/apoc/4.1/overview/apoc.cypher/apoc.cypher.runManyReadOnly/)
- [apoc.cypher.runSchema](https://neo4j.com/labs/apoc/4.1/overview/apoc.cypher/apoc.cypher.runSchema/)
- [apoc.cypher.runSchemaFile](https://neo4j.com/labs/apoc/4.1/overview/apoc.cypher/apoc.cypher.runSchemaFile/)
- [apoc.cypher.runSchemaFiles](https://neo4j.com/labs/apoc/4.1/overview/apoc.cypher/apoc.cypher.runSchemaFiles/)
- [apoc.cypher.runTimeboxed](https://neo4j.com/labs/apoc/4.1/overview/apoc.cypher/apoc.cypher.runTimeboxed/)
- [apoc.cypher.runWrite](https://neo4j.com/labs/apoc/4.1/overview/apoc.cypher/apoc.cypher.runWrite/)
- [apoc.cypher.runFirstColumn](https://neo4j.com/labs/apoc/4.1/overview/apoc.cypher/apoc.cypher.runFirstColumn/)
- [apoc.cypher.runFirstColumnMany](https://neo4j.com/labs/apoc/4.1/overview/apoc.cypher/apoc.cypher.runFirstColumnMany/)
- [apoc.cypher.runFirstColumnSingle](https://neo4j.com/labs/apoc/4.1/overview/apoc.cypher/apoc.cypher.runFirstColumnSingle/)
- [apoc.data](https://neo4j.com/labs/apoc/4.1/overview/apoc.data/)
- [apoc.data.domain](https://neo4j.com/labs/apoc/4.1/overview/apoc.data/apoc.data.domain/)
- [apoc.data.email](https://neo4j.com/labs/apoc/4.1/overview/apoc.data/apoc.data.email/)
- [apoc.data.url](https://neo4j.com/labs/apoc/4.1/overview/apoc.data/apoc.data.url/)
- [apoc.date](https://neo4j.com/labs/apoc/4.1/overview/apoc.date/)
- [apoc.date.expire](https://neo4j.com/labs/apoc/4.1/overview/apoc.date/apoc.date.expire/)
- [apoc.date.expireIn](https://neo4j.com/labs/apoc/4.1/overview/apoc.date/apoc.date.expireIn/)
- [apoc.date.add](https://neo4j.com/labs/apoc/4.1/overview/apoc.date/apoc.date.add/)
- [apoc.date.convert](https://neo4j.com/labs/apoc/4.1/overview/apoc.date/apoc.date.convert/)
- [apoc.date.convertFormat](https://neo4j.com/labs/apoc/4.1/overview/apoc.date/apoc.date.convertFormat/)
- [apoc.date.currentTimestamp](https://neo4j.com/labs/apoc/4.1/overview/apoc.date/apoc.date.currentTimestamp/)
- [apoc.date.field](https://neo4j.com/labs/apoc/4.1/overview/apoc.date/apoc.date.field/)
- [apoc.date.fields](https://neo4j.com/labs/apoc/4.1/overview/apoc.date/apoc.date.fields/)
- [apoc.date.format](https://neo4j.com/labs/apoc/4.1/overview/apoc.date/apoc.date.format/)
- [apoc.date.fromISO8601](https://neo4j.com/labs/apoc/4.1/overview/apoc.date/apoc.date.fromISO8601/)
- [apoc.date.parse](https://neo4j.com/labs/apoc/4.1/overview/apoc.date/apoc.date.parse/)
- [apoc.date.parseAsZonedDateTime](https://neo4j.com/labs/apoc/4.1/overview/apoc.date/apoc.date.parseAsZonedDateTime/)
- [apoc.date.systemTimezone](https://neo4j.com/labs/apoc/4.1/overview/apoc.date/apoc.date.systemTimezone/)
- [apoc.date.toISO8601](https://neo4j.com/labs/apoc/4.1/overview/apoc.date/apoc.date.toISO8601/)
- [apoc.date.toYears](https://neo4j.com/labs/apoc/4.1/overview/apoc.date/apoc.date.toYears/)
- [apoc.diff](https://neo4j.com/labs/apoc/4.1/overview/apoc.diff/)
- [apoc.diff.nodes](https://neo4j.com/labs/apoc/4.1/overview/apoc.diff/apoc.diff.nodes/)
- [apoc.do](https://neo4j.com/labs/apoc/4.1/overview/apoc.do/)
- [apoc.do.case](https://neo4j.com/labs/apoc/4.1/overview/apoc.do/apoc.do.case/)
- [apoc.do.when](https://neo4j.com/labs/apoc/4.1/overview/apoc.do/apoc.do.when/)
- [apoc.dv](https://neo4j.com/labs/apoc/4.1/overview/apoc.dv/)
- [apoc.dv.catalog.add](https://neo4j.com/labs/apoc/4.1/overview/apoc.dv/apoc.dv.catalog.add/)
- [apoc.dv.catalog.list](https://neo4j.com/labs/apoc/4.1/overview/apoc.dv/apoc.dv.catalog.list/)
- [apoc.dv.catalog.remove](https://neo4j.com/labs/apoc/4.1/overview/apoc.dv/apoc.dv.catalog.remove/)
- [apoc.dv.query](https://neo4j.com/labs/apoc/4.1/overview/apoc.dv/apoc.dv.query/)
- [apoc.dv.queryAndLink](https://neo4j.com/labs/apoc/4.1/overview/apoc.dv/apoc.dv.queryAndLink/)
- [apoc.es](https://neo4j.com/labs/apoc/4.1/overview/apoc.es/)
- [apoc.es.get](https://neo4j.com/labs/apoc/4.1/overview/apoc.es/apoc.es.get/)
- [apoc.es.getRaw](https://neo4j.com/labs/apoc/4.1/overview/apoc.es/apoc.es.getRaw/)
- [apoc.es.post](https://neo4j.com/labs/apoc/4.1/overview/apoc.es/apoc.es.post/)
- [apoc.es.postRaw](https://neo4j.com/labs/apoc/4.1/overview/apoc.es/apoc.es.postRaw/)
- [apoc.es.put](https://neo4j.com/labs/apoc/4.1/overview/apoc.es/apoc.es.put/)
- [apoc.es.query](https://neo4j.com/labs/apoc/4.1/overview/apoc.es/apoc.es.query/)
- [apoc.es.stats](https://neo4j.com/labs/apoc/4.1/overview/apoc.es/apoc.es.stats/)
- [apoc.example](https://neo4j.com/labs/apoc/4.1/overview/apoc.example/)
- [apoc.example.movies](https://neo4j.com/labs/apoc/4.1/overview/apoc.example/apoc.example.movies/)
- [apoc.export](https://neo4j.com/labs/apoc/4.1/overview/apoc.export/)
- [apoc.export.csv.all](https://neo4j.com/labs/apoc/4.1/overview/apoc.export/apoc.export.csv.all/)
- [apoc.export.csv.data](https://neo4j.com/labs/apoc/4.1/overview/apoc.export/apoc.export.csv.data/)
- [apoc.export.csv.graph](https://neo4j.com/labs/apoc/4.1/overview/apoc.export/apoc.export.csv.graph/)
- [apoc.export.csv.query](https://neo4j.com/labs/apoc/4.1/overview/apoc.export/apoc.export.csv.query/)
- [apoc.export.cypher.all](https://neo4j.com/labs/apoc/4.1/overview/apoc.export/apoc.export.cypher.all/)
- [apoc.export.cypher.data](https://neo4j.com/labs/apoc/4.1/overview/apoc.export/apoc.export.cypher.data/)
- [apoc.export.cypher.graph](https://neo4j.com/labs/apoc/4.1/overview/apoc.export/apoc.export.cypher.graph/)
- [apoc.export.cypher.query](https://neo4j.com/labs/apoc/4.1/overview/apoc.export/apoc.export.cypher.query/)
- [apoc.export.cypher.schema](https://neo4j.com/labs/apoc/4.1/overview/apoc.export/apoc.export.cypher.schema/)
- [apoc.export.cypherAll](https://neo4j.com/labs/apoc/4.1/overview/apoc.export/apoc.export.cypherAll/)
- [apoc.export.cypherData](https://neo4j.com/labs/apoc/4.1/overview/apoc.export/apoc.export.cypherData/)
- [apoc.export.cypherGraph](https://neo4j.com/labs/apoc/4.1/overview/apoc.export/apoc.export.cypherGraph/)
- [apoc.export.cypherQuery](https://neo4j.com/labs/apoc/4.1/overview/apoc.export/apoc.export.cypherQuery/)
- [apoc.export.graphml.all](https://neo4j.com/labs/apoc/4.1/overview/apoc.export/apoc.export.graphml.all/)
- [apoc.export.graphml.data](https://neo4j.com/labs/apoc/4.1/overview/apoc.export/apoc.export.graphml.data/)
- [apoc.export.graphml.graph](https://neo4j.com/labs/apoc/4.1/overview/apoc.export/apoc.export.graphml.graph/)
- [apoc.export.graphml.query](https://neo4j.com/labs/apoc/4.1/overview/apoc.export/apoc.export.graphml.query/)
- [apoc.export.json.all](https://neo4j.com/labs/apoc/4.1/overview/apoc.export/apoc.export.json.all/)
- [apoc.export.json.data](https://neo4j.com/labs/apoc/4.1/overview/apoc.export/apoc.export.json.data/)
- [apoc.export.json.graph](https://neo4j.com/labs/apoc/4.1/overview/apoc.export/apoc.export.json.graph/)
- [apoc.export.json.query](https://neo4j.com/labs/apoc/4.1/overview/apoc.export/apoc.export.json.query/)
- [apoc.export.xls.all](https://neo4j.com/labs/apoc/4.1/overview/apoc.export/apoc.export.xls.all/)
- [apoc.export.xls.data](https://neo4j.com/labs/apoc/4.1/overview/apoc.export/apoc.export.xls.data/)
- [apoc.export.xls.graph](https://neo4j.com/labs/apoc/4.1/overview/apoc.export/apoc.export.xls.graph/)
- [apoc.export.xls.query](https://neo4j.com/labs/apoc/4.1/overview/apoc.export/apoc.export.xls.query/)
- [apoc.generate](https://neo4j.com/labs/apoc/4.1/overview/apoc.generate/)
- [apoc.generate.ba](https://neo4j.com/labs/apoc/4.1/overview/apoc.generate/apoc.generate.ba/)
- [apoc.generate.complete](https://neo4j.com/labs/apoc/4.1/overview/apoc.generate/apoc.generate.complete/)
- [apoc.generate.er](https://neo4j.com/labs/apoc/4.1/overview/apoc.generate/apoc.generate.er/)
- [apoc.generate.simple](https://neo4j.com/labs/apoc/4.1/overview/apoc.generate/apoc.generate.simple/)
- [apoc.generate.ws](https://neo4j.com/labs/apoc/4.1/overview/apoc.generate/apoc.generate.ws/)
- [apoc.gephi](https://neo4j.com/labs/apoc/4.1/overview/apoc.gephi/)
- [apoc.gephi.add](https://neo4j.com/labs/apoc/4.1/overview/apoc.gephi/apoc.gephi.add/)
- [apoc.get](https://neo4j.com/labs/apoc/4.1/overview/apoc.get/)
- [apoc.get.nodes](https://neo4j.com/labs/apoc/4.1/overview/apoc.get/apoc.get.nodes/)
- [apoc.get.rels](https://neo4j.com/labs/apoc/4.1/overview/apoc.get/apoc.get.rels/)
- [apoc.graph](https://neo4j.com/labs/apoc/4.1/overview/apoc.graph/)
- [apoc.graph.from](https://neo4j.com/labs/apoc/4.1/overview/apoc.graph/apoc.graph.from/)
- [apoc.graph.fromCypher](https://neo4j.com/labs/apoc/4.1/overview/apoc.graph/apoc.graph.fromCypher/)
- [apoc.graph.fromDB](https://neo4j.com/labs/apoc/4.1/overview/apoc.graph/apoc.graph.fromDB/)
- [apoc.graph.fromData](https://neo4j.com/labs/apoc/4.1/overview/apoc.graph/apoc.graph.fromData/)
- [apoc.graph.fromDocument](https://neo4j.com/labs/apoc/4.1/overview/apoc.graph/apoc.graph.fromDocument/)
- [apoc.graph.fromPath](https://neo4j.com/labs/apoc/4.1/overview/apoc.graph/apoc.graph.fromPath/)
- [apoc.graph.fromPaths](https://neo4j.com/labs/apoc/4.1/overview/apoc.graph/apoc.graph.fromPaths/)
- [apoc.graph.validateDocument](https://neo4j.com/labs/apoc/4.1/overview/apoc.graph/apoc.graph.validateDocument/)
- [apoc.hashing](https://neo4j.com/labs/apoc/4.1/overview/apoc.hashing/)
- [apoc.hashing.fingerprint](https://neo4j.com/labs/apoc/4.1/overview/apoc.hashing/apoc.hashing.fingerprint/)
- [apoc.hashing.fingerprintGraph](https://neo4j.com/labs/apoc/4.1/overview/apoc.hashing/apoc.hashing.fingerprintGraph/)
- [apoc.hashing.fingerprinting](https://neo4j.com/labs/apoc/4.1/overview/apoc.hashing/apoc.hashing.fingerprinting/)
- [apoc.import](https://neo4j.com/labs/apoc/4.1/overview/apoc.import/)
- [apoc.import.csv](https://neo4j.com/labs/apoc/4.1/overview/apoc.import/apoc.import.csv/)
- [apoc.import.graphml](https://neo4j.com/labs/apoc/4.1/overview/apoc.import/apoc.import.graphml/)
- [apoc.import.json](https://neo4j.com/labs/apoc/4.1/overview/apoc.import/apoc.import.json/)
- [apoc.import.xml](https://neo4j.com/labs/apoc/4.1/overview/apoc.import/apoc.import.xml/)
- [apoc.json](https://neo4j.com/labs/apoc/4.1/overview/apoc.json/)
- [apoc.json.path](https://neo4j.com/labs/apoc/4.1/overview/apoc.json/apoc.json.path/)
- [apoc.label](https://neo4j.com/labs/apoc/4.1/overview/apoc.label/)
- [apoc.label.exists](https://neo4j.com/labs/apoc/4.1/overview/apoc.label/apoc.label.exists/)
- [apoc.load](https://neo4j.com/labs/apoc/4.1/overview/apoc.load/)
- [apoc.load.csv](https://neo4j.com/labs/apoc/4.1/overview/apoc.load/apoc.load.csv/)
- [apoc.load.csvParams](https://neo4j.com/labs/apoc/4.1/overview/apoc.load/apoc.load.csvParams/)
- [apoc.load.directory](https://neo4j.com/labs/apoc/4.1/overview/apoc.load/apoc.load.directory/)
- [apoc.load.directory.async.add](https://neo4j.com/labs/apoc/4.1/overview/apoc.load/apoc.load.directory.async.add/)
- [apoc.load.directory.async.list](https://neo4j.com/labs/apoc/4.1/overview/apoc.load/apoc.load.directory.async.list/)
- [apoc.load.directory.async.remove](https://neo4j.com/labs/apoc/4.1/overview/apoc.load/apoc.load.directory.async.remove/)
- [apoc.load.directory.async.removeAll](https://neo4j.com/labs/apoc/4.1/overview/apoc.load/apoc.load.directory.async.removeAll/)
- [apoc.load.driver](https://neo4j.com/labs/apoc/4.1/overview/apoc.load/apoc.load.driver/)
- [apoc.load.html](https://neo4j.com/labs/apoc/4.1/overview/apoc.load/apoc.load.html/)
- [apoc.load.jdbc](https://neo4j.com/labs/apoc/4.1/overview/apoc.load/apoc.load.jdbc/)
- [apoc.load.jdbcParams](https://neo4j.com/labs/apoc/4.1/overview/apoc.load/apoc.load.jdbcParams/)
- [apoc.load.jdbcUpdate](https://neo4j.com/labs/apoc/4.1/overview/apoc.load/apoc.load.jdbcUpdate/)
- [apoc.load.json](https://neo4j.com/labs/apoc/4.1/overview/apoc.load/apoc.load.json/)
- [apoc.load.jsonArray](https://neo4j.com/labs/apoc/4.1/overview/apoc.load/apoc.load.jsonArray/)
- [apoc.load.jsonParams](https://neo4j.com/labs/apoc/4.1/overview/apoc.load/apoc.load.jsonParams/)
- [apoc.load.ldap](https://neo4j.com/labs/apoc/4.1/overview/apoc.load/apoc.load.ldap/)
- [apoc.load.xls](https://neo4j.com/labs/apoc/4.1/overview/apoc.load/apoc.load.xls/)
- [apoc.load.xml](https://neo4j.com/labs/apoc/4.1/overview/apoc.load/apoc.load.xml/)
- [apoc.lock](https://neo4j.com/labs/apoc/4.1/overview/apoc.lock/)
- [apoc.lock.all](https://neo4j.com/labs/apoc/4.1/overview/apoc.lock/apoc.lock.all/)
- [apoc.lock.nodes](https://neo4j.com/labs/apoc/4.1/overview/apoc.lock/apoc.lock.nodes/)
- [apoc.lock.read.nodes](https://neo4j.com/labs/apoc/4.1/overview/apoc.lock/apoc.lock.read.nodes/)
- [apoc.lock.read.rels](https://neo4j.com/labs/apoc/4.1/overview/apoc.lock/apoc.lock.read.rels/)
- [apoc.lock.rels](https://neo4j.com/labs/apoc/4.1/overview/apoc.lock/apoc.lock.rels/)
- [apoc.log](https://neo4j.com/labs/apoc/4.1/overview/apoc.log/)
- [apoc.log.debug](https://neo4j.com/labs/apoc/4.1/overview/apoc.log/apoc.log.debug/)
- [apoc.log.error](https://neo4j.com/labs/apoc/4.1/overview/apoc.log/apoc.log.error/)
- [apoc.log.info](https://neo4j.com/labs/apoc/4.1/overview/apoc.log/apoc.log.info/)
- [apoc.log.stream](https://neo4j.com/labs/apoc/4.1/overview/apoc.log/apoc.log.stream/)
- [apoc.log.warn](https://neo4j.com/labs/apoc/4.1/overview/apoc.log/apoc.log.warn/)
- [apoc.map](https://neo4j.com/labs/apoc/4.1/overview/apoc.map/)
- [apoc.map.clean](https://neo4j.com/labs/apoc/4.1/overview/apoc.map/apoc.map.clean/)
- [apoc.map.flatten](https://neo4j.com/labs/apoc/4.1/overview/apoc.map/apoc.map.flatten/)
- [apoc.map.fromLists](https://neo4j.com/labs/apoc/4.1/overview/apoc.map/apoc.map.fromLists/)
- [apoc.map.fromNodes](https://neo4j.com/labs/apoc/4.1/overview/apoc.map/apoc.map.fromNodes/)
- [apoc.map.fromPairs](https://neo4j.com/labs/apoc/4.1/overview/apoc.map/apoc.map.fromPairs/)
- [apoc.map.fromValues](https://neo4j.com/labs/apoc/4.1/overview/apoc.map/apoc.map.fromValues/)
- [apoc.map.get](https://neo4j.com/labs/apoc/4.1/overview/apoc.map/apoc.map.get/)
- [apoc.map.groupBy](https://neo4j.com/labs/apoc/4.1/overview/apoc.map/apoc.map.groupBy/)
- [apoc.map.groupByMulti](https://neo4j.com/labs/apoc/4.1/overview/apoc.map/apoc.map.groupByMulti/)
- [apoc.map.merge](https://neo4j.com/labs/apoc/4.1/overview/apoc.map/apoc.map.merge/)
- [apoc.map.mergeList](https://neo4j.com/labs/apoc/4.1/overview/apoc.map/apoc.map.mergeList/)
- [apoc.map.mget](https://neo4j.com/labs/apoc/4.1/overview/apoc.map/apoc.map.mget/)
- [apoc.map.removeKey](https://neo4j.com/labs/apoc/4.1/overview/apoc.map/apoc.map.removeKey/)
- [apoc.map.removeKeys](https://neo4j.com/labs/apoc/4.1/overview/apoc.map/apoc.map.removeKeys/)
- [apoc.map.setEntry](https://neo4j.com/labs/apoc/4.1/overview/apoc.map/apoc.map.setEntry/)
- [apoc.map.setKey](https://neo4j.com/labs/apoc/4.1/overview/apoc.map/apoc.map.setKey/)
- [apoc.map.setLists](https://neo4j.com/labs/apoc/4.1/overview/apoc.map/apoc.map.setLists/)
- [apoc.map.setPairs](https://neo4j.com/labs/apoc/4.1/overview/apoc.map/apoc.map.setPairs/)
- [apoc.map.setValues](https://neo4j.com/labs/apoc/4.1/overview/apoc.map/apoc.map.setValues/)
- [apoc.map.sortedProperties](https://neo4j.com/labs/apoc/4.1/overview/apoc.map/apoc.map.sortedProperties/)
- [apoc.map.submap](https://neo4j.com/labs/apoc/4.1/overview/apoc.map/apoc.map.submap/)
- [apoc.map.unflatten](https://neo4j.com/labs/apoc/4.1/overview/apoc.map/apoc.map.unflatten/)
- [apoc.map.updateTree](https://neo4j.com/labs/apoc/4.1/overview/apoc.map/apoc.map.updateTree/)
- [apoc.map.values](https://neo4j.com/labs/apoc/4.1/overview/apoc.map/apoc.map.values/)
- [apoc.math](https://neo4j.com/labs/apoc/4.1/overview/apoc.math/)
- [apoc.math.regr](https://neo4j.com/labs/apoc/4.1/overview/apoc.math/apoc.math.regr/)
- [apoc.math.cosh](https://neo4j.com/labs/apoc/4.1/overview/apoc.math/apoc.math.cosh/)
- [apoc.math.coth](https://neo4j.com/labs/apoc/4.1/overview/apoc.math/apoc.math.coth/)
- [apoc.math.csch](https://neo4j.com/labs/apoc/4.1/overview/apoc.math/apoc.math.csch/)
- [apoc.math.maxByte](https://neo4j.com/labs/apoc/4.1/overview/apoc.math/apoc.math.maxByte/)
- [apoc.math.maxDouble](https://neo4j.com/labs/apoc/4.1/overview/apoc.math/apoc.math.maxDouble/)
- [apoc.math.maxInt](https://neo4j.com/labs/apoc/4.1/overview/apoc.math/apoc.math.maxInt/)
- [apoc.math.maxLong](https://neo4j.com/labs/apoc/4.1/overview/apoc.math/apoc.math.maxLong/)
- [apoc.math.minByte](https://neo4j.com/labs/apoc/4.1/overview/apoc.math/apoc.math.minByte/)
- [apoc.math.minDouble](https://neo4j.com/labs/apoc/4.1/overview/apoc.math/apoc.math.minDouble/)
- [apoc.math.minInt](https://neo4j.com/labs/apoc/4.1/overview/apoc.math/apoc.math.minInt/)
- [apoc.math.minLong](https://neo4j.com/labs/apoc/4.1/overview/apoc.math/apoc.math.minLong/)
- [apoc.math.round](https://neo4j.com/labs/apoc/4.1/overview/apoc.math/apoc.math.round/)
- [apoc.math.sech](https://neo4j.com/labs/apoc/4.1/overview/apoc.math/apoc.math.sech/)
- [apoc.math.sigmoid](https://neo4j.com/labs/apoc/4.1/overview/apoc.math/apoc.math.sigmoid/)
- [apoc.math.sigmoidPrime](https://neo4j.com/labs/apoc/4.1/overview/apoc.math/apoc.math.sigmoidPrime/)
- [apoc.math.sinh](https://neo4j.com/labs/apoc/4.1/overview/apoc.math/apoc.math.sinh/)
- [apoc.math.tanh](https://neo4j.com/labs/apoc/4.1/overview/apoc.math/apoc.math.tanh/)
- [apoc.merge](https://neo4j.com/labs/apoc/4.1/overview/apoc.merge/)
- [apoc.merge.node](https://neo4j.com/labs/apoc/4.1/overview/apoc.merge/apoc.merge.node/)
- [apoc.merge.node.eager](https://neo4j.com/labs/apoc/4.1/overview/apoc.merge/apoc.merge.node.eager/)
- [apoc.merge.relationship](https://neo4j.com/labs/apoc/4.1/overview/apoc.merge/apoc.merge.relationship/)
- [apoc.merge.relationship.eager](https://neo4j.com/labs/apoc/4.1/overview/apoc.merge/apoc.merge.relationship.eager/)
- [apoc.meta](https://neo4j.com/labs/apoc/4.1/overview/apoc.meta/)
- [apoc.meta.data](https://neo4j.com/labs/apoc/4.1/overview/apoc.meta/apoc.meta.data/)
- [apoc.meta.data.of](https://neo4j.com/labs/apoc/4.1/overview/apoc.meta/apoc.meta.data.of/)
- [apoc.meta.graph](https://neo4j.com/labs/apoc/4.1/overview/apoc.meta/apoc.meta.graph/)
- [apoc.meta.graph.of](https://neo4j.com/labs/apoc/4.1/overview/apoc.meta/apoc.meta.graph.of/)
- [apoc.meta.graphSample](https://neo4j.com/labs/apoc/4.1/overview/apoc.meta/apoc.meta.graphSample/)
- [apoc.meta.nodeTypeProperties](https://neo4j.com/labs/apoc/4.1/overview/apoc.meta/apoc.meta.nodeTypeProperties/)
- [apoc.meta.relTypeProperties](https://neo4j.com/labs/apoc/4.1/overview/apoc.meta/apoc.meta.relTypeProperties/)
- [apoc.meta.schema](https://neo4j.com/labs/apoc/4.1/overview/apoc.meta/apoc.meta.schema/)
- [apoc.meta.stats](https://neo4j.com/labs/apoc/4.1/overview/apoc.meta/apoc.meta.stats/)
- [apoc.meta.subGraph](https://neo4j.com/labs/apoc/4.1/overview/apoc.meta/apoc.meta.subGraph/)
- [apoc.meta.cypher.isType](https://neo4j.com/labs/apoc/4.1/overview/apoc.meta/apoc.meta.cypher.isType/)
- [apoc.meta.cypher.type](https://neo4j.com/labs/apoc/4.1/overview/apoc.meta/apoc.meta.cypher.type/)
- [apoc.meta.cypher.types](https://neo4j.com/labs/apoc/4.1/overview/apoc.meta/apoc.meta.cypher.types/)
- [apoc.meta.isType](https://neo4j.com/labs/apoc/4.1/overview/apoc.meta/apoc.meta.isType/)
- [apoc.meta.nodes.count](https://neo4j.com/labs/apoc/4.1/overview/apoc.meta/apoc.meta.nodes.count/)
- [apoc.meta.type](https://neo4j.com/labs/apoc/4.1/overview/apoc.meta/apoc.meta.type/)
- [apoc.meta.typeName](https://neo4j.com/labs/apoc/4.1/overview/apoc.meta/apoc.meta.typeName/)
- [apoc.meta.types](https://neo4j.com/labs/apoc/4.1/overview/apoc.meta/apoc.meta.types/)
- [apoc.metrics](https://neo4j.com/labs/apoc/4.1/overview/apoc.metrics/)
- [apoc.metrics.get](https://neo4j.com/labs/apoc/4.1/overview/apoc.metrics/apoc.metrics.get/)
- [apoc.metrics.list](https://neo4j.com/labs/apoc/4.1/overview/apoc.metrics/apoc.metrics.list/)
- [apoc.metrics.storage](https://neo4j.com/labs/apoc/4.1/overview/apoc.metrics/apoc.metrics.storage/)
- [apoc.model](https://neo4j.com/labs/apoc/4.1/overview/apoc.model/)
- [apoc.model.jdbc](https://neo4j.com/labs/apoc/4.1/overview/apoc.model/apoc.model.jdbc/)
- [apoc.mongo](https://neo4j.com/labs/apoc/4.1/overview/apoc.mongo/)
- [apoc.mongo.aggregate](https://neo4j.com/labs/apoc/4.1/overview/apoc.mongo/apoc.mongo.aggregate/)
- [apoc.mongo.count](https://neo4j.com/labs/apoc/4.1/overview/apoc.mongo/apoc.mongo.count/)
- [apoc.mongo.delete](https://neo4j.com/labs/apoc/4.1/overview/apoc.mongo/apoc.mongo.delete/)
- [apoc.mongo.find](https://neo4j.com/labs/apoc/4.1/overview/apoc.mongo/apoc.mongo.find/)
- [apoc.mongo.insert](https://neo4j.com/labs/apoc/4.1/overview/apoc.mongo/apoc.mongo.insert/)
- [apoc.mongo.update](https://neo4j.com/labs/apoc/4.1/overview/apoc.mongo/apoc.mongo.update/)
- [apoc.mongodb](https://neo4j.com/labs/apoc/4.1/overview/apoc.mongodb/)
- [apoc.mongodb.count](https://neo4j.com/labs/apoc/4.1/overview/apoc.mongodb/apoc.mongodb.count/)
- [apoc.mongodb.delete](https://neo4j.com/labs/apoc/4.1/overview/apoc.mongodb/apoc.mongodb.delete/)
- [apoc.mongodb.find](https://neo4j.com/labs/apoc/4.1/overview/apoc.mongodb/apoc.mongodb.find/)
- [apoc.mongodb.first](https://neo4j.com/labs/apoc/4.1/overview/apoc.mongodb/apoc.mongodb.first/)
- [apoc.mongodb.get](https://neo4j.com/labs/apoc/4.1/overview/apoc.mongodb/apoc.mongodb.get/)
- [apoc.mongodb.get.byObjectId](https://neo4j.com/labs/apoc/4.1/overview/apoc.mongodb/apoc.mongodb.get.byObjectId/)
- [apoc.mongodb.insert](https://neo4j.com/labs/apoc/4.1/overview/apoc.mongodb/apoc.mongodb.insert/)
- [apoc.mongodb.update](https://neo4j.com/labs/apoc/4.1/overview/apoc.mongodb/apoc.mongodb.update/)
- [apoc.monitor](https://neo4j.com/labs/apoc/4.1/overview/apoc.monitor/)
- [apoc.monitor.ids](https://neo4j.com/labs/apoc/4.1/overview/apoc.monitor/apoc.monitor.ids/)
- [apoc.monitor.kernel](https://neo4j.com/labs/apoc/4.1/overview/apoc.monitor/apoc.monitor.kernel/)
- [apoc.monitor.store](https://neo4j.com/labs/apoc/4.1/overview/apoc.monitor/apoc.monitor.store/)
- [apoc.monitor.tx](https://neo4j.com/labs/apoc/4.1/overview/apoc.monitor/apoc.monitor.tx/)
- [apoc.neighbors](https://neo4j.com/labs/apoc/4.1/overview/apoc.neighbors/)
- [apoc.neighbors.athop](https://neo4j.com/labs/apoc/4.1/overview/apoc.neighbors/apoc.neighbors.athop/)
- [apoc.neighbors.athop.count](https://neo4j.com/labs/apoc/4.1/overview/apoc.neighbors/apoc.neighbors.athop.count/)
- [apoc.neighbors.byhop](https://neo4j.com/labs/apoc/4.1/overview/apoc.neighbors/apoc.neighbors.byhop/)
- [apoc.neighbors.byhop.count](https://neo4j.com/labs/apoc/4.1/overview/apoc.neighbors/apoc.neighbors.byhop.count/)
- [apoc.neighbors.tohop](https://neo4j.com/labs/apoc/4.1/overview/apoc.neighbors/apoc.neighbors.tohop/)
- [apoc.neighbors.tohop.count](https://neo4j.com/labs/apoc/4.1/overview/apoc.neighbors/apoc.neighbors.tohop.count/)
- [apoc.nlp](https://neo4j.com/labs/apoc/4.1/overview/apoc.nlp/)
- [apoc.nlp.aws.entities.graph](https://neo4j.com/labs/apoc/4.1/overview/apoc.nlp/apoc.nlp.aws.entities.graph/)
- [apoc.nlp.aws.entities.stream](https://neo4j.com/labs/apoc/4.1/overview/apoc.nlp/apoc.nlp.aws.entities.stream/)
- [apoc.nlp.aws.keyPhrases.graph](https://neo4j.com/labs/apoc/4.1/overview/apoc.nlp/apoc.nlp.aws.keyPhrases.graph/)
- [apoc.nlp.aws.keyPhrases.stream](https://neo4j.com/labs/apoc/4.1/overview/apoc.nlp/apoc.nlp.aws.keyPhrases.stream/)
- [apoc.nlp.aws.sentiment.graph](https://neo4j.com/labs/apoc/4.1/overview/apoc.nlp/apoc.nlp.aws.sentiment.graph/)
- [apoc.nlp.aws.sentiment.stream](https://neo4j.com/labs/apoc/4.1/overview/apoc.nlp/apoc.nlp.aws.sentiment.stream/)
- [apoc.nlp.azure.entities.graph](https://neo4j.com/labs/apoc/4.1/overview/apoc.nlp/apoc.nlp.azure.entities.graph/)
- [apoc.nlp.azure.entities.stream](https://neo4j.com/labs/apoc/4.1/overview/apoc.nlp/apoc.nlp.azure.entities.stream/)
- [apoc.nlp.azure.keyPhrases.graph](https://neo4j.com/labs/apoc/4.1/overview/apoc.nlp/apoc.nlp.azure.keyPhrases.graph/)
- [apoc.nlp.azure.keyPhrases.stream](https://neo4j.com/labs/apoc/4.1/overview/apoc.nlp/apoc.nlp.azure.keyPhrases.stream/)
- [apoc.nlp.azure.sentiment.graph](https://neo4j.com/labs/apoc/4.1/overview/apoc.nlp/apoc.nlp.azure.sentiment.graph/)
- [apoc.nlp.azure.sentiment.stream](https://neo4j.com/labs/apoc/4.1/overview/apoc.nlp/apoc.nlp.azure.sentiment.stream/)
- [apoc.nlp.gcp.classify.graph](https://neo4j.com/labs/apoc/4.1/overview/apoc.nlp/apoc.nlp.gcp.classify.graph/)
- [apoc.nlp.gcp.classify.stream](https://neo4j.com/labs/apoc/4.1/overview/apoc.nlp/apoc.nlp.gcp.classify.stream/)
- [apoc.nlp.gcp.entities.graph](https://neo4j.com/labs/apoc/4.1/overview/apoc.nlp/apoc.nlp.gcp.entities.graph/)
- [apoc.nlp.gcp.entities.stream](https://neo4j.com/labs/apoc/4.1/overview/apoc.nlp/apoc.nlp.gcp.entities.stream/)
- [apoc.node](https://neo4j.com/labs/apoc/4.1/overview/apoc.node/)
- [apoc.node.degree](https://neo4j.com/labs/apoc/4.1/overview/apoc.node/apoc.node.degree/)
- [apoc.node.degree.in](https://neo4j.com/labs/apoc/4.1/overview/apoc.node/apoc.node.degree.in/)
- [apoc.node.degree.out](https://neo4j.com/labs/apoc/4.1/overview/apoc.node/apoc.node.degree.out/)
- [apoc.node.id](https://neo4j.com/labs/apoc/4.1/overview/apoc.node/apoc.node.id/)
- [apoc.node.labels](https://neo4j.com/labs/apoc/4.1/overview/apoc.node/apoc.node.labels/)
- [apoc.node.relationship.exists](https://neo4j.com/labs/apoc/4.1/overview/apoc.node/apoc.node.relationship.exists/)
- [apoc.node.relationship.types](https://neo4j.com/labs/apoc/4.1/overview/apoc.node/apoc.node.relationship.types/)
- [apoc.node.relationships.exist](https://neo4j.com/labs/apoc/4.1/overview/apoc.node/apoc.node.relationships.exist/)
- [apoc.nodes](https://neo4j.com/labs/apoc/4.1/overview/apoc.nodes/)
- [apoc.nodes.collapse](https://neo4j.com/labs/apoc/4.1/overview/apoc.nodes/apoc.nodes.collapse/)
- [apoc.nodes.cycles](https://neo4j.com/labs/apoc/4.1/overview/apoc.nodes/apoc.nodes.cycles/)
- [apoc.nodes.delete](https://neo4j.com/labs/apoc/4.1/overview/apoc.nodes/apoc.nodes.delete/)
- [apoc.nodes.get](https://neo4j.com/labs/apoc/4.1/overview/apoc.nodes/apoc.nodes.get/)
- [apoc.nodes.group](https://neo4j.com/labs/apoc/4.1/overview/apoc.nodes/apoc.nodes.group/)
- [apoc.nodes.link](https://neo4j.com/labs/apoc/4.1/overview/apoc.nodes/apoc.nodes.link/)
- [apoc.nodes.rels](https://neo4j.com/labs/apoc/4.1/overview/apoc.nodes/apoc.nodes.rels/)
- [apoc.nodes.connected](https://neo4j.com/labs/apoc/4.1/overview/apoc.nodes/apoc.nodes.connected/)
- [apoc.nodes.isDense](https://neo4j.com/labs/apoc/4.1/overview/apoc.nodes/apoc.nodes.isDense/)
- [apoc.nodes.relationship.types](https://neo4j.com/labs/apoc/4.1/overview/apoc.nodes/apoc.nodes.relationship.types/)
- [apoc.nodes.relationships.exist](https://neo4j.com/labs/apoc/4.1/overview/apoc.nodes/apoc.nodes.relationships.exist/)
- [apoc.number](https://neo4j.com/labs/apoc/4.1/overview/apoc.number/)
- [apoc.number.arabicToRoman](https://neo4j.com/labs/apoc/4.1/overview/apoc.number/apoc.number.arabicToRoman/)
- [apoc.number.exact.add](https://neo4j.com/labs/apoc/4.1/overview/apoc.number/apoc.number.exact.add/)
- [apoc.number.exact.div](https://neo4j.com/labs/apoc/4.1/overview/apoc.number/apoc.number.exact.div/)
- [apoc.number.exact.mul](https://neo4j.com/labs/apoc/4.1/overview/apoc.number/apoc.number.exact.mul/)
- [apoc.number.exact.sub](https://neo4j.com/labs/apoc/4.1/overview/apoc.number/apoc.number.exact.sub/)
- [apoc.number.exact.toExact](https://neo4j.com/labs/apoc/4.1/overview/apoc.number/apoc.number.exact.toExact/)
- [apoc.number.exact.toFloat](https://neo4j.com/labs/apoc/4.1/overview/apoc.number/apoc.number.exact.toFloat/)
- [apoc.number.exact.toInteger](https://neo4j.com/labs/apoc/4.1/overview/apoc.number/apoc.number.exact.toInteger/)
- [apoc.number.format](https://neo4j.com/labs/apoc/4.1/overview/apoc.number/apoc.number.format/)
- [apoc.number.parseFloat](https://neo4j.com/labs/apoc/4.1/overview/apoc.number/apoc.number.parseFloat/)
- [apoc.number.parseInt](https://neo4j.com/labs/apoc/4.1/overview/apoc.number/apoc.number.parseInt/)
- [apoc.number.romanToArabic](https://neo4j.com/labs/apoc/4.1/overview/apoc.number/apoc.number.romanToArabic/)
- [apoc.path](https://neo4j.com/labs/apoc/4.1/overview/apoc.path/)
- [apoc.path.expand](https://neo4j.com/labs/apoc/4.1/overview/apoc.path/apoc.path.expand/)
- [apoc.path.expandConfig](https://neo4j.com/labs/apoc/4.1/overview/apoc.path/apoc.path.expandConfig/)
- [apoc.path.spanningTree](https://neo4j.com/labs/apoc/4.1/overview/apoc.path/apoc.path.spanningTree/)
- [apoc.path.subgraphAll](https://neo4j.com/labs/apoc/4.1/overview/apoc.path/apoc.path.subgraphAll/)
- [apoc.path.subgraphNodes](https://neo4j.com/labs/apoc/4.1/overview/apoc.path/apoc.path.subgraphNodes/)
- [apoc.path.combine](https://neo4j.com/labs/apoc/4.1/overview/apoc.path/apoc.path.combine/)
- [apoc.path.create](https://neo4j.com/labs/apoc/4.1/overview/apoc.path/apoc.path.create/)
- [apoc.path.elements](https://neo4j.com/labs/apoc/4.1/overview/apoc.path/apoc.path.elements/)
- [apoc.path.slice](https://neo4j.com/labs/apoc/4.1/overview/apoc.path/apoc.path.slice/)
- [apoc.periodic](https://neo4j.com/labs/apoc/4.1/overview/apoc.periodic/)
- [apoc.periodic.cancel](https://neo4j.com/labs/apoc/4.1/overview/apoc.periodic/apoc.periodic.cancel/)
- [apoc.periodic.commit](https://neo4j.com/labs/apoc/4.1/overview/apoc.periodic/apoc.periodic.commit/)
- [apoc.periodic.countdown](https://neo4j.com/labs/apoc/4.1/overview/apoc.periodic/apoc.periodic.countdown/)
- [apoc.periodic.iterate](https://neo4j.com/labs/apoc/4.1/overview/apoc.periodic/apoc.periodic.iterate/)
- [apoc.periodic.list](https://neo4j.com/labs/apoc/4.1/overview/apoc.periodic/apoc.periodic.list/)
- [apoc.periodic.repeat](https://neo4j.com/labs/apoc/4.1/overview/apoc.periodic/apoc.periodic.repeat/)
- [apoc.periodic.rock\_n\_roll](https://neo4j.com/labs/apoc/4.1/overview/apoc.periodic/apoc.periodic.rock_n_roll/)
- [apoc.periodic.rock\_n\_roll\_while](https://neo4j.com/labs/apoc/4.1/overview/apoc.periodic/apoc.periodic.rock_n_roll_while/)
- [apoc.periodic.submit](https://neo4j.com/labs/apoc/4.1/overview/apoc.periodic/apoc.periodic.submit/)
- [apoc.periodic.truncate](https://neo4j.com/labs/apoc/4.1/overview/apoc.periodic/apoc.periodic.truncate/)
- [apoc.redis](https://neo4j.com/labs/apoc/4.1/overview/apoc.redis/)
- [apoc.redis.append](https://neo4j.com/labs/apoc/4.1/overview/apoc.redis/apoc.redis.append/)
- [apoc.redis.configGet](https://neo4j.com/labs/apoc/4.1/overview/apoc.redis/apoc.redis.configGet/)
- [apoc.redis.configSet](https://neo4j.com/labs/apoc/4.1/overview/apoc.redis/apoc.redis.configSet/)
- [apoc.redis.copy](https://neo4j.com/labs/apoc/4.1/overview/apoc.redis/apoc.redis.copy/)
- [apoc.redis.eval](https://neo4j.com/labs/apoc/4.1/overview/apoc.redis/apoc.redis.eval/)
- [apoc.redis.exists](https://neo4j.com/labs/apoc/4.1/overview/apoc.redis/apoc.redis.exists/)
- [apoc.redis.get](https://neo4j.com/labs/apoc/4.1/overview/apoc.redis/apoc.redis.get/)
- [apoc.redis.hdel](https://neo4j.com/labs/apoc/4.1/overview/apoc.redis/apoc.redis.hdel/)
- [apoc.redis.hexists](https://neo4j.com/labs/apoc/4.1/overview/apoc.redis/apoc.redis.hexists/)
- [apoc.redis.hget](https://neo4j.com/labs/apoc/4.1/overview/apoc.redis/apoc.redis.hget/)
- [apoc.redis.hgetall](https://neo4j.com/labs/apoc/4.1/overview/apoc.redis/apoc.redis.hgetall/)
- [apoc.redis.hincrby](https://neo4j.com/labs/apoc/4.1/overview/apoc.redis/apoc.redis.hincrby/)
- [apoc.redis.hset](https://neo4j.com/labs/apoc/4.1/overview/apoc.redis/apoc.redis.hset/)
- [apoc.redis.incrby](https://neo4j.com/labs/apoc/4.1/overview/apoc.redis/apoc.redis.incrby/)
- [apoc.redis.info](https://neo4j.com/labs/apoc/4.1/overview/apoc.redis/apoc.redis.info/)
- [apoc.redis.lrange](https://neo4j.com/labs/apoc/4.1/overview/apoc.redis/apoc.redis.lrange/)
- [apoc.redis.persist](https://neo4j.com/labs/apoc/4.1/overview/apoc.redis/apoc.redis.persist/)
- [apoc.redis.pexpire](https://neo4j.com/labs/apoc/4.1/overview/apoc.redis/apoc.redis.pexpire/)
- [apoc.redis.pop](https://neo4j.com/labs/apoc/4.1/overview/apoc.redis/apoc.redis.pop/)
- [apoc.redis.pttl](https://neo4j.com/labs/apoc/4.1/overview/apoc.redis/apoc.redis.pttl/)
- [apoc.redis.push](https://neo4j.com/labs/apoc/4.1/overview/apoc.redis/apoc.redis.push/)
- [apoc.redis.sadd](https://neo4j.com/labs/apoc/4.1/overview/apoc.redis/apoc.redis.sadd/)
- [apoc.redis.scard](https://neo4j.com/labs/apoc/4.1/overview/apoc.redis/apoc.redis.scard/)
- [apoc.redis.getSet](https://neo4j.com/labs/apoc/4.1/overview/apoc.redis/apoc.redis.getSet/)
- [apoc.redis.smembers](https://neo4j.com/labs/apoc/4.1/overview/apoc.redis/apoc.redis.smembers/)
- [apoc.redis.spop](https://neo4j.com/labs/apoc/4.1/overview/apoc.redis/apoc.redis.spop/)
- [apoc.redis.sunion](https://neo4j.com/labs/apoc/4.1/overview/apoc.redis/apoc.redis.sunion/)
- [apoc.redis.zadd](https://neo4j.com/labs/apoc/4.1/overview/apoc.redis/apoc.redis.zadd/)
- [apoc.redis.zcard](https://neo4j.com/labs/apoc/4.1/overview/apoc.redis/apoc.redis.zcard/)
- [apoc.redis.zrangebyscore](https://neo4j.com/labs/apoc/4.1/overview/apoc.redis/apoc.redis.zrangebyscore/)
- [apoc.redis.zrem](https://neo4j.com/labs/apoc/4.1/overview/apoc.redis/apoc.redis.zrem/)
- [apoc.refactor](https://neo4j.com/labs/apoc/4.1/overview/apoc.refactor/)
- [apoc.refactor.categorize](https://neo4j.com/labs/apoc/4.1/overview/apoc.refactor/apoc.refactor.categorize/)
- [apoc.refactor.cloneNodes](https://neo4j.com/labs/apoc/4.1/overview/apoc.refactor/apoc.refactor.cloneNodes/)
- [apoc.refactor.cloneNodesWithRelationships](https://neo4j.com/labs/apoc/4.1/overview/apoc.refactor/apoc.refactor.cloneNodesWithRelationships/)
- [apoc.refactor.cloneSubgraph](https://neo4j.com/labs/apoc/4.1/overview/apoc.refactor/apoc.refactor.cloneSubgraph/)
- [apoc.refactor.cloneSubgraphFromPaths](https://neo4j.com/labs/apoc/4.1/overview/apoc.refactor/apoc.refactor.cloneSubgraphFromPaths/)
- [apoc.refactor.collapseNode](https://neo4j.com/labs/apoc/4.1/overview/apoc.refactor/apoc.refactor.collapseNode/)
- [apoc.refactor.deleteAndReconnect](https://neo4j.com/labs/apoc/4.1/overview/apoc.refactor/apoc.refactor.deleteAndReconnect/)
- [apoc.refactor.extractNode](https://neo4j.com/labs/apoc/4.1/overview/apoc.refactor/apoc.refactor.extractNode/)
- [apoc.refactor.from](https://neo4j.com/labs/apoc/4.1/overview/apoc.refactor/apoc.refactor.from/)
- [apoc.refactor.invert](https://neo4j.com/labs/apoc/4.1/overview/apoc.refactor/apoc.refactor.invert/)
- [apoc.refactor.mergeNodes](https://neo4j.com/labs/apoc/4.1/overview/apoc.refactor/apoc.refactor.mergeNodes/)
- [apoc.refactor.mergeRelationships](https://neo4j.com/labs/apoc/4.1/overview/apoc.refactor/apoc.refactor.mergeRelationships/)
- [apoc.refactor.normalizeAsBoolean](https://neo4j.com/labs/apoc/4.1/overview/apoc.refactor/apoc.refactor.normalizeAsBoolean/)
- [apoc.refactor.rename.label](https://neo4j.com/labs/apoc/4.1/overview/apoc.refactor/apoc.refactor.rename.label/)
- [apoc.refactor.rename.nodeProperty](https://neo4j.com/labs/apoc/4.1/overview/apoc.refactor/apoc.refactor.rename.nodeProperty/)
- [apoc.refactor.rename.type](https://neo4j.com/labs/apoc/4.1/overview/apoc.refactor/apoc.refactor.rename.type/)
- [apoc.refactor.rename.typeProperty](https://neo4j.com/labs/apoc/4.1/overview/apoc.refactor/apoc.refactor.rename.typeProperty/)
- [apoc.refactor.setType](https://neo4j.com/labs/apoc/4.1/overview/apoc.refactor/apoc.refactor.setType/)
- [apoc.refactor.to](https://neo4j.com/labs/apoc/4.1/overview/apoc.refactor/apoc.refactor.to/)
- [apoc.rel](https://neo4j.com/labs/apoc/4.1/overview/apoc.rel/)
- [apoc.rel.endNode](https://neo4j.com/labs/apoc/4.1/overview/apoc.rel/apoc.rel.endNode/)
- [apoc.rel.id](https://neo4j.com/labs/apoc/4.1/overview/apoc.rel/apoc.rel.id/)
- [apoc.rel.startNode](https://neo4j.com/labs/apoc/4.1/overview/apoc.rel/apoc.rel.startNode/)
- [apoc.rel.type](https://neo4j.com/labs/apoc/4.1/overview/apoc.rel/apoc.rel.type/)
- [apoc.schema](https://neo4j.com/labs/apoc/4.1/overview/apoc.schema/)
- [apoc.schema.assert](https://neo4j.com/labs/apoc/4.1/overview/apoc.schema/apoc.schema.assert/)
- [apoc.schema.nodes](https://neo4j.com/labs/apoc/4.1/overview/apoc.schema/apoc.schema.nodes/)
- [apoc.schema.properties.distinct](https://neo4j.com/labs/apoc/4.1/overview/apoc.schema/apoc.schema.properties.distinct/)
- [apoc.schema.properties.distinctCount](https://neo4j.com/labs/apoc/4.1/overview/apoc.schema/apoc.schema.properties.distinctCount/)
- [apoc.schema.relationships](https://neo4j.com/labs/apoc/4.1/overview/apoc.schema/apoc.schema.relationships/)
- [apoc.schema.node.constraintExists](https://neo4j.com/labs/apoc/4.1/overview/apoc.schema/apoc.schema.node.constraintExists/)
- [apoc.schema.node.indexExists](https://neo4j.com/labs/apoc/4.1/overview/apoc.schema/apoc.schema.node.indexExists/)
- [apoc.schema.relationship.constraintExists](https://neo4j.com/labs/apoc/4.1/overview/apoc.schema/apoc.schema.relationship.constraintExists/)
- [apoc.scoring](https://neo4j.com/labs/apoc/4.1/overview/apoc.scoring/)
- [apoc.scoring.existence](https://neo4j.com/labs/apoc/4.1/overview/apoc.scoring/apoc.scoring.existence/)
- [apoc.scoring.pareto](https://neo4j.com/labs/apoc/4.1/overview/apoc.scoring/apoc.scoring.pareto/)
- [apoc.search](https://neo4j.com/labs/apoc/4.1/overview/apoc.search/)
- [apoc.search.multiSearchReduced](https://neo4j.com/labs/apoc/4.1/overview/apoc.search/apoc.search.multiSearchReduced/)
- [apoc.search.node](https://neo4j.com/labs/apoc/4.1/overview/apoc.search/apoc.search.node/)
- [apoc.search.nodeAll](https://neo4j.com/labs/apoc/4.1/overview/apoc.search/apoc.search.nodeAll/)
- [apoc.search.nodeAllReduced](https://neo4j.com/labs/apoc/4.1/overview/apoc.search/apoc.search.nodeAllReduced/)
- [apoc.search.nodeReduced](https://neo4j.com/labs/apoc/4.1/overview/apoc.search/apoc.search.nodeReduced/)
- [apoc.spatial](https://neo4j.com/labs/apoc/4.1/overview/apoc.spatial/)
- [apoc.spatial.geocode](https://neo4j.com/labs/apoc/4.1/overview/apoc.spatial/apoc.spatial.geocode/)
- [apoc.spatial.geocodeOnce](https://neo4j.com/labs/apoc/4.1/overview/apoc.spatial/apoc.spatial.geocodeOnce/)
- [apoc.spatial.reverseGeocode](https://neo4j.com/labs/apoc/4.1/overview/apoc.spatial/apoc.spatial.reverseGeocode/)
- [apoc.spatial.sortByDistance](https://neo4j.com/labs/apoc/4.1/overview/apoc.spatial/apoc.spatial.sortByDistance/)
- [apoc.static](https://neo4j.com/labs/apoc/4.1/overview/apoc.static/)
- [apoc.static.get](https://neo4j.com/labs/apoc/4.1/overview/apoc.static/apoc.static.get/)
- [apoc.static.list](https://neo4j.com/labs/apoc/4.1/overview/apoc.static/apoc.static.list/)
- [apoc.static.set](https://neo4j.com/labs/apoc/4.1/overview/apoc.static/apoc.static.set/)
- [apoc.static.get](https://neo4j.com/labs/apoc/4.1/overview/apoc.static/apoc.static.get/)
- [apoc.static.getAll](https://neo4j.com/labs/apoc/4.1/overview/apoc.static/apoc.static.getAll/)
- [apoc.stats](https://neo4j.com/labs/apoc/4.1/overview/apoc.stats/)
- [apoc.stats.degrees](https://neo4j.com/labs/apoc/4.1/overview/apoc.stats/apoc.stats.degrees/)
- [apoc.systemdb](https://neo4j.com/labs/apoc/4.1/overview/apoc.systemdb/)
- [apoc.systemdb.execute](https://neo4j.com/labs/apoc/4.1/overview/apoc.systemdb/apoc.systemdb.execute/)
- [apoc.systemdb.export.metadata](https://neo4j.com/labs/apoc/4.1/overview/apoc.systemdb/apoc.systemdb.export.metadata/)
- [apoc.systemdb.graph](https://neo4j.com/labs/apoc/4.1/overview/apoc.systemdb/apoc.systemdb.graph/)
- [apoc.temporal](https://neo4j.com/labs/apoc/4.1/overview/apoc.temporal/)
- [apoc.temporal.format](https://neo4j.com/labs/apoc/4.1/overview/apoc.temporal/apoc.temporal.format/)
- [apoc.temporal.formatDuration](https://neo4j.com/labs/apoc/4.1/overview/apoc.temporal/apoc.temporal.formatDuration/)
- [apoc.temporal.toZonedTemporal](https://neo4j.com/labs/apoc/4.1/overview/apoc.temporal/apoc.temporal.toZonedTemporal/)
- [apoc.text](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/)
- [apoc.text.doubleMetaphone](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.doubleMetaphone/)
- [apoc.text.phonetic](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.phonetic/)
- [apoc.text.phoneticDelta](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.phoneticDelta/)
- [apoc.text.base64Decode](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.base64Decode/)
- [apoc.text.base64Encode](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.base64Encode/)
- [apoc.text.base64UrlDecode](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.base64UrlDecode/)
- [apoc.text.base64UrlEncode](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.base64UrlEncode/)
- [apoc.text.byteCount](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.byteCount/)
- [apoc.text.bytes](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.bytes/)
- [apoc.text.camelCase](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.camelCase/)
- [apoc.text.capitalize](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.capitalize/)
- [apoc.text.capitalizeAll](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.capitalizeAll/)
- [apoc.text.charAt](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.charAt/)
- [apoc.text.clean](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.clean/)
- [apoc.text.code](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.code/)
- [apoc.text.compareCleaned](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.compareCleaned/)
- [apoc.text.decapitalize](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.decapitalize/)
- [apoc.text.decapitalizeAll](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.decapitalizeAll/)
- [apoc.text.distance](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.distance/)
- [apoc.text.doubleMetaphone](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.doubleMetaphone/)
- [apoc.text.format](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.format/)
- [apoc.text.fuzzyMatch](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.fuzzyMatch/)
- [apoc.text.hammingDistance](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.hammingDistance/)
- [apoc.text.hexCharAt](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.hexCharAt/)
- [apoc.text.hexValue](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.hexValue/)
- [apoc.text.indexOf](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.indexOf/)
- [apoc.text.indexesOf](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.indexesOf/)
- [apoc.text.jaroWinklerDistance](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.jaroWinklerDistance/)
- [apoc.text.join](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.join/)
- [apoc.text.levenshteinDistance](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.levenshteinDistance/)
- [apoc.text.levenshteinSimilarity](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.levenshteinSimilarity/)
- [apoc.text.lpad](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.lpad/)
- [apoc.text.phonetic](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.phonetic/)
- [apoc.text.random](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.random/)
- [apoc.text.regexGroups](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.regexGroups/)
- [apoc.text.regreplace](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.regreplace/)
- [apoc.text.repeat](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.repeat/)
- [apoc.text.replace](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.replace/)
- [apoc.text.rpad](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.rpad/)
- [apoc.text.slug](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.slug/)
- [apoc.text.snakeCase](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.snakeCase/)
- [apoc.text.sorensenDiceSimilarity](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.sorensenDiceSimilarity/)
- [apoc.text.split](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.split/)
- [apoc.text.swapCase](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.swapCase/)
- [apoc.text.toCypher](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.toCypher/)
- [apoc.text.toUpperCase](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.toUpperCase/)
- [apoc.text.upperCamelCase](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.upperCamelCase/)
- [apoc.text.urldecode](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.urldecode/)
- [apoc.text.urlencode](https://neo4j.com/labs/apoc/4.1/overview/apoc.text/apoc.text.urlencode/)
- [apoc.trigger](https://neo4j.com/labs/apoc/4.1/overview/apoc.trigger/)
- [apoc.trigger.add](https://neo4j.com/labs/apoc/4.1/overview/apoc.trigger/apoc.trigger.add/)
- [apoc.trigger.list](https://neo4j.com/labs/apoc/4.1/overview/apoc.trigger/apoc.trigger.list/)
- [apoc.trigger.pause](https://neo4j.com/labs/apoc/4.1/overview/apoc.trigger/apoc.trigger.pause/)
- [apoc.trigger.remove](https://neo4j.com/labs/apoc/4.1/overview/apoc.trigger/apoc.trigger.remove/)
- [apoc.trigger.removeAll](https://neo4j.com/labs/apoc/4.1/overview/apoc.trigger/apoc.trigger.removeAll/)
- [apoc.trigger.resume](https://neo4j.com/labs/apoc/4.1/overview/apoc.trigger/apoc.trigger.resume/)
- [apoc.trigger.nodesByLabel](https://neo4j.com/labs/apoc/4.1/overview/apoc.trigger/apoc.trigger.nodesByLabel/)
- [apoc.trigger.propertiesByKey](https://neo4j.com/labs/apoc/4.1/overview/apoc.trigger/apoc.trigger.propertiesByKey/)
- [apoc.ttl](https://neo4j.com/labs/apoc/4.1/overview/apoc.ttl/)
- [apoc.ttl.expire](https://neo4j.com/labs/apoc/4.1/overview/apoc.ttl/apoc.ttl.expire/)
- [apoc.ttl.expireIn](https://neo4j.com/labs/apoc/4.1/overview/apoc.ttl/apoc.ttl.expireIn/)
- [apoc.ttl.config](https://neo4j.com/labs/apoc/4.1/overview/apoc.ttl/apoc.ttl.config/)
- [apoc.util](https://neo4j.com/labs/apoc/4.1/overview/apoc.util/)
- [apoc.util.sleep](https://neo4j.com/labs/apoc/4.1/overview/apoc.util/apoc.util.sleep/)
- [apoc.util.validate](https://neo4j.com/labs/apoc/4.1/overview/apoc.util/apoc.util.validate/)
- [apoc.util.compress](https://neo4j.com/labs/apoc/4.1/overview/apoc.util/apoc.util.compress/)
- [apoc.util.decompress](https://neo4j.com/labs/apoc/4.1/overview/apoc.util/apoc.util.decompress/)
- [apoc.util.md5](https://neo4j.com/labs/apoc/4.1/overview/apoc.util/apoc.util.md5/)
- [apoc.util.sha1](https://neo4j.com/labs/apoc/4.1/overview/apoc.util/apoc.util.sha1/)
- [apoc.util.sha256](https://neo4j.com/labs/apoc/4.1/overview/apoc.util/apoc.util.sha256/)
- [apoc.util.sha384](https://neo4j.com/labs/apoc/4.1/overview/apoc.util/apoc.util.sha384/)
- [apoc.util.sha512](https://neo4j.com/labs/apoc/4.1/overview/apoc.util/apoc.util.sha512/)
- [apoc.util.validatePredicate](https://neo4j.com/labs/apoc/4.1/overview/apoc.util/apoc.util.validatePredicate/)
- [apoc.uuid](https://neo4j.com/labs/apoc/4.1/overview/apoc.uuid/)
- [apoc.uuid.install](https://neo4j.com/labs/apoc/4.1/overview/apoc.uuid/apoc.uuid.install/)
- [apoc.uuid.list](https://neo4j.com/labs/apoc/4.1/overview/apoc.uuid/apoc.uuid.list/)
- [apoc.uuid.remove](https://neo4j.com/labs/apoc/4.1/overview/apoc.uuid/apoc.uuid.remove/)
- [apoc.uuid.removeAll](https://neo4j.com/labs/apoc/4.1/overview/apoc.uuid/apoc.uuid.removeAll/)
- [apoc.warmup](https://neo4j.com/labs/apoc/4.1/overview/apoc.warmup/)
- [apoc.warmup.run](https://neo4j.com/labs/apoc/4.1/overview/apoc.warmup/apoc.warmup.run/)
- [apoc.xml](https://neo4j.com/labs/apoc/4.1/overview/apoc.xml/)
- [apoc.xml.import](https://neo4j.com/labs/apoc/4.1/overview/apoc.xml/apoc.xml.import/)
- [apoc.xml.parse](https://neo4j.com/labs/apoc/4.1/overview/apoc.xml/apoc.xml.parse/)
- [Configuration Options](https://neo4j.com/labs/apoc/4.1/config/)
- [General considerations](https://neo4j.com/labs/apoc/4.1/general-considerations/)
- [Import](https://neo4j.com/labs/apoc/4.1/import/)
- [Loading Data from Web-APIs](https://neo4j.com/labs/apoc/4.1/import/web-apis/)
- [Load JSON](https://neo4j.com/labs/apoc/4.1/import/load-json/)
- [Load CSV](https://neo4j.com/labs/apoc/4.1/import/load-csv/)
- [Import CSV](https://neo4j.com/labs/apoc/4.1/import/import-csv/)
- [Loading Excel (XLS)](https://neo4j.com/labs/apoc/4.1/import/xls/)
- [Load XML](https://neo4j.com/labs/apoc/4.1/import/xml/)
- [Load HTML](https://neo4j.com/labs/apoc/4.1/import/html/)
- [Import GraphML](https://neo4j.com/labs/apoc/4.1/import/graphml/)
- [Export](https://neo4j.com/labs/apoc/4.1/export/)
- [Export to CSV](https://neo4j.com/labs/apoc/4.1/export/csv/)
- [Export to JSON](https://neo4j.com/labs/apoc/4.1/export/json/)
- [Export to Cypher Script](https://neo4j.com/labs/apoc/4.1/export/cypher/)
- [Export to GraphML](https://neo4j.com/labs/apoc/4.1/export/graphml/)
- [Export to Gephi](https://neo4j.com/labs/apoc/4.1/export/gephi/)
- [Export to Excel](https://neo4j.com/labs/apoc/4.1/export/xls/)
- [Database Integration](https://neo4j.com/labs/apoc/4.1/database-integration/)
- [Load JDBC (RDBMS)](https://neo4j.com/labs/apoc/4.1/database-integration/load-jdbc/)
- [Database Modeling](https://neo4j.com/labs/apoc/4.1/database-integration/database-modeling/)
- [ElasticSearch](https://neo4j.com/labs/apoc/4.1/database-integration/elasticsearch/)
- [MongoDB (Deprecated)](https://neo4j.com/labs/apoc/4.1/database-integration/mongodb/)
- [Couchbase](https://neo4j.com/labs/apoc/4.1/database-integration/couchbase/)
- [Bolt](https://neo4j.com/labs/apoc/4.1/database-integration/bolt-neo4j/)
- [Load LDAP](https://neo4j.com/labs/apoc/4.1/database-integration/load-ldap/)
- [Redis](https://neo4j.com/labs/apoc/4.1/database-integration/redis/)
- [Graph Updates](https://neo4j.com/labs/apoc/4.1/graph-updates/)
- [Creating Data](https://neo4j.com/labs/apoc/4.1/graph-updates/data-creation/)
- [Graph Refactorings](https://neo4j.com/labs/apoc/4.1/graph-updates/graph-refactoring/)
- [Categorize](https://neo4j.com/labs/apoc/4.1/graph-updates/graph-refactoring/categorize/)
- [Clone nodes](https://neo4j.com/labs/apoc/4.1/graph-updates/graph-refactoring/clone-nodes/)
- [Clone subgraph](https://neo4j.com/labs/apoc/4.1/graph-updates/graph-refactoring/clone-subgraph/)
- [Collapse node to relationship](https://neo4j.com/labs/apoc/4.1/graph-updates/graph-refactoring/collapse-node-to-relationship/)
- [Extract node from relationships](https://neo4j.com/labs/apoc/4.1/graph-updates/graph-refactoring/extract-node-from-relationship/)
- [Invert relationship](https://neo4j.com/labs/apoc/4.1/graph-updates/graph-refactoring/invert-relationship/)
- [Merge Nodes](https://neo4j.com/labs/apoc/4.1/graph-updates/graph-refactoring/merge-nodes/)
- [Normalize As Boolean](https://neo4j.com/labs/apoc/4.1/graph-updates/graph-refactoring/normalize-boolean/)
- [Property value to a label](https://neo4j.com/labs/apoc/4.1/graph-updates/graph-refactoring/property-value-label/)
- [Redirect relationships](https://neo4j.com/labs/apoc/4.1/graph-updates/graph-refactoring/redirect-relationship/)
- [Rename](https://neo4j.com/labs/apoc/4.1/graph-updates/graph-refactoring/rename-label-type-property/)
- [Set Relationship Types](https://neo4j.com/labs/apoc/4.1/graph-updates/graph-refactoring/set-relationship-type/)
- [UUIDs](https://neo4j.com/labs/apoc/4.1/graph-updates/uuid/)
- [Periodic Execution](https://neo4j.com/labs/apoc/4.1/graph-updates/periodic-execution/)
- [Atomic Property Updates](https://neo4j.com/labs/apoc/4.1/graph-updates/atomic-updates/)
- [Locking](https://neo4j.com/labs/apoc/4.1/graph-updates/locking/)
- [Time To Live (TTL) - Expire Nodes](https://neo4j.com/labs/apoc/4.1/graph-updates/ttl/)
- [Generating Graphs](https://neo4j.com/labs/apoc/4.1/graph-updates/graph-generators/)
- [Deleting Data](https://neo4j.com/labs/apoc/4.1/graph-updates/data-deletion/)
- [Data Structures](https://neo4j.com/labs/apoc/4.1/data-structures/)
- [Conversion Functions](https://neo4j.com/labs/apoc/4.1/data-structures/conversion-functions/)
- [Map Functions](https://neo4j.com/labs/apoc/4.1/data-structures/map-functions/)
- [Collection Functions](https://neo4j.com/labs/apoc/4.1/data-structures/collection-list-functions/)
- [Temporal (Date Time)](https://neo4j.com/labs/apoc/4.1/temporal/)
- [Temporal Functions](https://neo4j.com/labs/apoc/4.1/temporal/temporal-conversions/)
- [Date and Time Conversions](https://neo4j.com/labs/apoc/4.1/temporal/datetime-conversions/)
- [Mathematical](https://neo4j.com/labs/apoc/4.1/mathematical/)
- [Math Functions](https://neo4j.com/labs/apoc/4.1/mathematical/math-functions/)
- [Exact Math](https://neo4j.com/labs/apoc/4.1/mathematical/exact-math-functions/)
- [Number Format Conversions](https://neo4j.com/labs/apoc/4.1/mathematical/number-conversions/)
- [Bitwise operations](https://neo4j.com/labs/apoc/4.1/mathematical/bitwise-operations/)
- [Advanced Graph Querying](https://neo4j.com/labs/apoc/4.1/graph-querying/)
- [Path Expander Overview](https://neo4j.com/labs/apoc/4.1/graph-querying/path-expander/)
- [Expand paths](https://neo4j.com/labs/apoc/4.1/graph-querying/expand-paths/)
- [Expand paths with config](https://neo4j.com/labs/apoc/4.1/graph-querying/expand-paths-config/)
- [Expand to nodes in a subgraph](https://neo4j.com/labs/apoc/4.1/graph-querying/expand-subgraph-nodes/)
- [Expand to subgraph](https://neo4j.com/labs/apoc/4.1/graph-querying/expand-subgraph/)
- [Expand a spanning tree](https://neo4j.com/labs/apoc/4.1/graph-querying/expand-spanning-tree/)
- [Neighbor Functions](https://neo4j.com/labs/apoc/4.1/graph-querying/neighborhood/)
- [Path Manipulation](https://neo4j.com/labs/apoc/4.1/graph-querying/path-querying/)
- [Relationship Querying](https://neo4j.com/labs/apoc/4.1/graph-querying/relationship-querying/)
- [Node Querying](https://neo4j.com/labs/apoc/4.1/graph-querying/node-querying/)
- [Parallel Node Search](https://neo4j.com/labs/apoc/4.1/graph-querying/parallel-node-search/)
- [Comparing Graphs](https://neo4j.com/labs/apoc/4.1/comparing-graphs/)
- [Diff](https://neo4j.com/labs/apoc/4.1/comparing-graphs/node-difference/)
- [Fingerprinting](https://neo4j.com/labs/apoc/4.1/comparing-graphs/fingerprinting/)
- [Cypher Execution](https://neo4j.com/labs/apoc/4.1/cypher-execution/)
- [Running Cypher fragments](https://neo4j.com/labs/apoc/4.1/cypher-execution/running-cypher/)
- [Conditional Cypher Execution](https://neo4j.com/labs/apoc/4.1/cypher-execution/conditionals/)
- [Timeboxed Cypher statements](https://neo4j.com/labs/apoc/4.1/cypher-execution/cypher-timeboxed/)
- [Run multiple Statements](https://neo4j.com/labs/apoc/4.1/cypher-execution/cypher-multiple-statements/)
- [Run Cypher Script Files](https://neo4j.com/labs/apoc/4.1/cypher-execution/run-cypher-scripts/)
- [Custom, Cypher Based Procedures and Functions](https://neo4j.com/labs/apoc/4.1/cypher-execution/cypher-based-procedures-functions/)
- [Parallel Cypher Execution](https://neo4j.com/labs/apoc/4.1/cypher-execution/parallel/)
- [Virtual Nodes & Relationships (Graph Projections)](https://neo4j.com/labs/apoc/4.1/virtual/)
- [Virtual Nodes/Rels](https://neo4j.com/labs/apoc/4.1/virtual/virtual-nodes-rels/)
- [Nodes collapse](https://neo4j.com/labs/apoc/4.1/virtual/nodes-collapse/)
- [Virtual Graph](https://neo4j.com/labs/apoc/4.1/virtual/virtual-graph/)
- [Graph Grouping](https://neo4j.com/labs/apoc/4.1/virtual/graph-grouping/)
- [Virtual Resource](https://neo4j.com/labs/apoc/4.1/virtual-resource/)
- [Natural Language Processing (NLP)](https://neo4j.com/labs/apoc/4.1/nlp/)
- [Google Cloud Platform (GCP)](https://neo4j.com/labs/apoc/4.1/nlp/gcp/)
- [Amazon Web Services (AWS)](https://neo4j.com/labs/apoc/4.1/nlp/aws/)
- [Microsoft Azure Cognitive Services](https://neo4j.com/labs/apoc/4.1/nlp/azure/)
- [Background Operations](https://neo4j.com/labs/apoc/4.1/background-operations/)
- [Background Jobs](https://neo4j.com/labs/apoc/4.1/background-operations/periodic-background/)
- [Triggers](https://neo4j.com/labs/apoc/4.1/background-operations/triggers/)
- [Database Introspection](https://neo4j.com/labs/apoc/4.1/database-introspection/)
- [Meta Graph](https://neo4j.com/labs/apoc/4.1/database-introspection/meta/)
- [Config](https://neo4j.com/labs/apoc/4.1/database-introspection/config/)
- [Monitoring](https://neo4j.com/labs/apoc/4.1/database-introspection/monitoring/)
- [SystemDB](https://neo4j.com/labs/apoc/4.1/database-introspection/systemdb/)
- [Operational](https://neo4j.com/labs/apoc/4.1/operational/)
- [Cypher init script](https://neo4j.com/labs/apoc/4.1/operational/init-script/)
- [Warmup](https://neo4j.com/labs/apoc/4.1/operational/warmup/)
- [Logging](https://neo4j.com/labs/apoc/4.1/operational/log/)
- [Miscellaneous](https://neo4j.com/labs/apoc/4.1/misc/)
- [Text Functions](https://neo4j.com/labs/apoc/4.1/misc/text-functions/)
- [Spatial](https://neo4j.com/labs/apoc/4.1/misc/spatial/)
- [Static Value Storage](https://neo4j.com/labs/apoc/4.1/misc/static-values/)
- [Utilities](https://neo4j.com/labs/apoc/4.1/misc/utility-functions/)
- [Text and Lookup Indexes](https://neo4j.com/labs/apoc/4.1/indexes/)
- [Schema Information](https://neo4j.com/labs/apoc/4.1/indexes/schema-index-operations/)
- [List of procedures with its own transaction](https://neo4j.com/labs/apoc/4.1/transaction/)
**Is this page helpful?**
- [APOC Documentation](https://neo4j.com/labs/apoc/4.1/)
- [Data Structures](https://neo4j.com/labs/apoc/4.1/data-structures/)
- [Collection Functions](https://neo4j.com/labs/apoc/4.1/data-structures/collection-list-functions/)
[Edit this page](https://github.com/neo4j-contrib/neo4j-apoc-procedures/edit/4.1/docs/asciidoc/modules/ROOT/pages/data-structures/collection-list-functions.adoc)
# Collection Functions
APOC has a wide variety of Collection and List functions.
| | |
|---|---|
| `apoc.coll.sum([0.5,1,2.3])` | sum of all values in a list |
| `apoc.coll.avg([0.5,1,2.3])` | avg of all values in a list |
| `apoc.coll.min([0.5,1,2.3])` | minimum of all values in a list |
| `apoc.coll.max([0.5,1,2.3])` | maximum of all values in a list |
| `apoc.coll.sumLongs([1,3,3])` | sums all numeric values in a list |
| `apoc.coll.partition(list,batchSize)` | partitions a list into sublists of `batchSize` |
| `apoc.coll.zip([list1],[list2])` | all values in a list |
| `apoc.coll.pairs([1,2,3]) YIELD value` | \[1,2\],\[2,3\],\[3,null\] |
| `apoc.coll.pairsMin([1,2,3]) YIELD value` | \[1,2\],\[2,3\] |
| `apoc.coll.toSet([list])` | returns a unique list backed by a set |
| `apoc.coll.sort(coll)` | sort on Collections |
| `apoc.coll.sortNodes([nodes], 'name')` | sort nodes by property, ascending sorting by adding ^ in front of the sorting field |
| `apoc.coll.sortMaps([maps], 'key')` | sort maps by map key, ascending sorting by adding ^ in front of the sorting field |
| `apoc.coll.reverse(coll)` | returns the reversed list |
| `apoc.coll.contains(coll, value)` | returns true if collection contains the value |
| `apoc.coll.containsAll(coll, values)` | optimized contains-all operation (using a HashSet) returns true or false |
| `apoc.coll.containsSorted(coll, value)` | optimized contains on a sorted list operation (Collections.binarySearch) (returns true or false) |
| `apoc.coll.containsAllSorted(coll, value)` | optimized contains-all on a sorted list operation (Collections.binarySearch) (returns true or false) |
| `apoc.coll.isEqualCollection(coll, values)` | return true if two collections contain the same elements with the same cardinality in any order (using a HashMap) |
| `apoc.coll.union(first, second)` | creates the distinct union of the 2 lists |
| `apoc.coll.unionAll(first, second)` | creates the full union with duplicates of the two lists |
| `apoc.coll.subtract(first, second)` | returns unique set of first list with all elements of second list removed |
| `apoc.coll.removeAll(first, second)` | returns first list with all elements of second list removed |
| `apoc.coll.intersection(first, second)` | returns the unique intersection of the two lists |
| `apoc.coll.disjunction(first, second)` | returns the disjunct set of the two lists |
| `apoc.coll.split(list,value)` | splits collection on given values rows of lists, value itself will not be part of resulting lists |
| `apoc.coll.indexOf(coll, value)` | position of value in the list |
| `apoc.coll.shuffle(coll)` | returns the shuffled list |
| `apoc.coll.randomItem(coll)` | returns a random item from the list |
| `apoc.coll.randomItems(coll, itemCount, allowRepick: false)` | returns a list of `itemCount` random items from the list, optionally allowing picked elements to be picked again |
| `apoc.coll.containsDuplicates(coll)` | returns true if a collection contains duplicate elements |
| `apoc.coll.duplicates(coll)` | returns a list of duplicate items in the collection |
| `apoc.coll.duplicatesWithCount(coll)` | returns a list of duplicate items in the collection and their count, keyed by `item` and `count` (e.g., `[{item: xyz, count:2}, {item:zyx, count:5}]`) |
| `apoc.coll.occurrences(coll, item)` | returns the count of the given item in the collection |
| `apoc.coll.frequencies(coll)` | returns a list of frequencies of the items in the collection, keyed by `item` and `count` (e.g., `[{item: xyz, count:2}, {item:zyx, count:5}, {item:abc, count:1}]`) |
| `apoc.coll.frequenciesAsMap(coll)` | return a map of frequencies of the items in the collection, keyed by `item` and `count` (e.g., `{1: 2, 3: 2}`) |
| `apoc.coll.sortMulti` | sort list of maps by several sort fields (ascending with ^ prefix) and optionally applies limit and skip |
| `apoc.coll.flatten` | flattens a nested list |
| `apoc.coll.combinations(coll, minSelect, maxSelect:minSelect)` | Returns collection of all combinations of list elements of selection size between minSelect and maxSelect (default:minSelect), inclusive |
| `CALL apoc.coll.elements(list,limit,offset) yield _1,_2,..,_10,_1s,_2i,_3f,_4m,_5l,_6n,_7r,_8p` | deconstruct subset of mixed list into identifiers of the correct type |
| `apoc.coll.set(coll, index, value)` | set index to value |
| `apoc.coll.insert(coll, index, value)` | insert value at index |
| `apoc.coll.insertAll(coll, index, values)` | insert values at index |
| `apoc.coll.remove(coll, index, [length=1])` | remove range of values from index to length |
| `apoc.coll.different(values)` | returns true if value are different |
| `apoc.coll.fill(item, count)` | returns a list with the given count of items |
| `apoc.coll.sortText(coll, conf)` | sort on string based collections |
| `apoc.coll.pairWithOffset(values, offset)` | returns a list of pairs defined by the offset |
[Map Functions](https://neo4j.com/labs/apoc/4.1/data-structures/map-functions/) [Temporal (Date Time)](https://neo4j.com/labs/apoc/4.1/temporal/)
## Learn
- [Sandbox](https://neo4j.com/sandbox/?ref=developer-footer)
- [Neo4j Community Site](https://community.neo4j.com/?ref=developer-footer)
- [Neo4j Developer Blog](https://medium.com/neo4j)
- [Neo4j Videos](https://www.youtube.com/neo4j)
- [GraphAcademy](https://neo4j.com/graphacademy/?ref=developer-footer)
- [Neo4j Labs](https://neo4j.com/labs/?ref=developer-footer)
## Social
- [Twitter](https://twitter.com/neo4j)
- [Meetups](https://www.meetup.com/Neo4j-Online-Meetup/)
- [Github](https://github.com/neo4j/neo4j)
- [Stack Overflow](https://stackoverflow.com/questions/tagged/neo4j)
- [Want to Speak?](https://docs.google.com/forms/d/e/1FAIpQLSdEcNnMruES5iwvOVYovmS1D_P1ZL_HdUOitFrwrvruv5PZvA/viewform)
## [Contact Us →](https://neo4j.com/contact-us/?ref=footer)
- US: 1-855-636-4532
- Sweden +46 171 480 113
- UK: +44 20 3868 3223
- France: +33 (0) 1 88 46 13 20
© 2026 Neo4j, Inc.
[Terms](https://neo4j.com/terms/) \| [Privacy](https://neo4j.com/privacy-policy/) \| [Sitemap](https://neo4j.com/sitemap/)
Neo4j®, Neo Technology®, Cypher®, Neo4j® Bloom™ and Neo4j® Aura™ are registered trademarks of Neo4j, Inc. All other marks are owned by their respective companies. |
| Readable Markdown | null |
| Shard | 37 (laksa) |
| Root Hash | 12828843287614304637 |
| Unparsed URL | com,neo4j!/labs/apoc/4.1/data-structures/collection-list-functions/ s443 |