{
  "comment" : "This is generated by ESQL's AbstractFunctionTestCase. Do not edit it. See ../README.md for how to regenerate it.",
  "type" : "operator",
  "operator" : "not like",
  "name" : "not_like",
  "description" : "Use `LIKE` to filter data based on string patterns using wildcards. `LIKE`\nusually acts on a field placed on the left-hand side of the operator, but it can\nalso act on a constant (literal) expression. The right-hand side of the operator\nrepresents the pattern or a list of patterns. If a list of patterns is provided,\nthe expression will return true if any of the patterns match.\n\nThe following wildcard characters are supported:\n\n* `*` matches zero or more characters.\n* `?` matches one character.",
  "signatures" : [
    {
      "params" : [
        {
          "name" : "str",
          "type" : "keyword",
          "optional" : false,
          "description" : "A literal expression."
        },
        {
          "name" : "pattern",
          "type" : "keyword",
          "optional" : false,
          "description" : "Pattern."
        }
      ],
      "variadic" : true,
      "returnType" : "boolean"
    },
    {
      "params" : [
        {
          "name" : "str",
          "type" : "text",
          "optional" : false,
          "description" : "A literal expression."
        },
        {
          "name" : "pattern",
          "type" : "keyword",
          "optional" : false,
          "description" : "Pattern."
        }
      ],
      "variadic" : true,
      "returnType" : "boolean"
    }
  ],
  "preview" : false,
  "snapshot_only" : false
}
