apoc.text.urlencode Function APOC Core apoc.text.urlencode(text) - return the urlencoded text 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" apoc.text.urldecode apoc.trigger