apoc.text.base64Encode

Details

Syntax

apoc.text.base64Encode(text)

Description

Encodes the given STRING with Base64.

Arguments

Name

Type

Description

text

STRING

The string to be encoded using base64.

Returns

STRING

Usage Examples

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

"bmVvNGo="