Skip to content

UserEmail Criterion

The UserEmail Search Criterion searches for content based on the email assigned to the User account.

Arguments

  • value - string(s) representing the User email(s)
  • (optional) operator - operator constant (IN, EQ, LIKE)

Limitations

Solr search engine and Elasticsearch support IN and EQ operators only.

Example

PHP

1
$query->query = new Criterion\UserEmail(['johndoe']);
1
$query->query = new Criterion\UserEmail('nospam*', Criterion\Operator::LIKE);

REST API

1
2
3
4
5
<Query>
    <Filter>
        <UserEmailCriterion>j.black*</UserEmailCriterion>
    </Filter>
</Query>
1
2
3
4
5
"Query": {
    "Filter": {
        "UserEmailCriterion": "j.black*"
    }
}