apoc.text.base64Encode

Function APOC Core

apoc.text.base64Encode(text) YIELD value - Encode a string with Base64

Signature

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

Input parameters

Name Type Default

text

STRING?

null

Usage Examples

Capitalise the first letter of the word with
RETURN apoc.text.base64Encode("neo4j") AS output;
Table 1. Results
output

"bmVvNGo="