1 | <?php |
||
42 | class EntityQueryExclusive extends EntityQuery { |
||
|
|||
43 | use DependencySerializationTrait; |
||
44 | |||
45 | /** |
||
46 | * {@inheritdoc} |
||
47 | */ |
||
48 | protected function getBaseQuery($value, array $args, ResolveInfo $info) { |
||
64 | |||
65 | /** |
||
66 | * Apply the specified bundle filtering mode to the query. |
||
67 | * |
||
68 | * @param \Drupal\Core\Entity\Query\QueryInterface $query |
||
69 | * The entity query object. |
||
70 | * @param \Drupal\Core\Entity\ContentEntityInterface $value |
||
71 | * The parent entity object. |
||
72 | * @param mixed $mode |
||
73 | * The revision query mode. |
||
74 | * |
||
75 | * @return \Drupal\Core\Entity\Query\QueryInterface The entity query object. |
||
76 | * The entity query object. |
||
77 | */ |
||
78 | protected function applyBundleMode(QueryInterface $query, ContentEntityInterface $value, $mode) { |
||
90 | |||
91 | } |
||
92 |