STARTS WITH

Matching the start of a string

The start of strings can be matched using STARTS WITH. The matching is case-sensitive.

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