ENDS WITH

Matching the end of a string

The end of strings can be matched using ENDS WITH. The matching is case-sensitive.

Reference: WHERE manual page
Related: :help STARTS WITH :help CONTAINS
MATCH (director:Person)
WHERE director.name ENDS WITH 'ter'
RETURN director.name
Match directors with a name that ends with "ter".