apoc.text.decapitalize Function APOC Core apoc.text.decapitalize(text) YIELD value - decapitalize the first letter of the word Signature Copied!apoc.text.decapitalize(text :: STRING?) :: (STRING?) Input parameters Name Type Default text STRING? null Usage Examples Decapitalize the first letter of the string Decapitalize the first letter of the stringCopied!RETURN apoc.text.decapitalize("Graph Database") AS output; Table 1. Results output "graph Database"