# `Ash.Query.Function.StringEndsWith`
[🔗](https://github.com/ash-project/ash/blob/v3.26.0/lib/ash/query/function/string_ends_with.ex#L5)

Returns true if the first string ends with the second.

Case insensitive strings are accounted for on either side.

   string_ends_with("foo", "oo")
   true

   string_ends_with(%Ash.CiString{string: "foo"}, "OO")
   true

   string_ends_with("foo", %Ash.CiString{string: "OO"})
   true

# `args`

# `has_partial_evaluate?`

---

*Consult [api-reference.md](api-reference.md) for complete listing*
