2021-05-08 Finding an item in an array with partial match in ArangoDB Query1234LET needle = "eedl"LET haystack = ["needle", "in", "a", "haystack"]RETURN haystack[** FILTER CONTAINS(CURRENT, needle)]// Output: ["needle"] Variant: Case-insensitive1234LET needle = "EEDL"LET haystack = ["needle", "in", "a", "haystack"]RETURN haystack[** FILTER CONTAINS(LOWER(CURRENT), LOWER(needle))]// Output: ["needle"] References Array operators - Inline filter String functions - CONTAINS() String functions - LOWER()