#LIKE
If a string is like another string.
Behaves like a SQL LIKE, which accepts % prefix/suffix
for substring LIKE queries.
Examples:
"foo" LIKE "foo" -- true
"foo%" LIKE "bazfoo" -- false
"%foo%" LIKE "bazfoobar" -- true
text, text -> checkbox