apoc.text.urlencode

Function

apoc.text.urlencode(text String) - encodes the given URL string.

Signature

apoc.text.urlencode(text :: STRING?) :: (STRING?)

Input parameters

Name Type Default

text

STRING?

null

Usage Examples

RETURN apoc.text.urlencode("Neo4j Aura") AS output;
Table 1. Results
output

"Neo4j+Aura"

RETURN apoc.text.urlencode("GRANDstack: Build Fullstack GraphQL Applications With Ease") AS output;
Table 2. Results
output

"GRANDstack%3A+Build+Fullstack+GraphQL+Applications+With+Ease"