Ecto.Query.API.ilike
You're seeing just the function
ilike
, go back to Ecto.Query.API module for more information.
Searches for search
in string
in a case insensitive fashion.
from p in Post, where: ilike(p.body, "Chapter%")
Translates to the underlying SQL ILIKE query. This operation is only available on PostgreSQL.