You are here

protected function DeveloperAppQuery::appOwnerConditionFields in Apigee Edge 8

Returns field names(s) in a condition that contain an app owner criteria.

Return value

array Array of field name(s) that contain an app owner criteria in a query.

Overrides AppQueryBase::appOwnerConditionFields

File

src/Entity/Query/DeveloperAppQuery.php, line 33

Class

DeveloperAppQuery
Defines an entity query class for developer app entities.

Namespace

Drupal\apigee_edge\Entity\Query

Code

protected function appOwnerConditionFields() : array {
  return [
    'developerId',
    'email',
  ];
}