Add getters to EntityQuery

Created on 8 June 2015, almost 10 years ago
Updated 9 March 2025, 27 days ago

Currently the entity query has no methods that would provide information about applied conditions, sorts,.. to the query. This does not follow the typical \Drupal\Core\Database\Query\Select in any way.

For example, if someone wants to retrieve the conditions, the only way to do it is a bit dirty:

      $reflection = new \ReflectionClass($query);
      $property = $reflection->getProperty('condition');
      $property->setAccessible(TRUE);
      $conditions = $property->getValue($query);
      $values = $conditions->conditions();

or sorting:

      $reflection = new \ReflectionClass($query);
      $property = $reflection->getProperty('sort');
      $property->setAccessible(TRUE);
      $values = $property->getValue($query);

I have various filter forms that apply filters to entity queries and I need to know which filters were already applied so I can proceed accordingly(ie. add additional conditions or remove certain conditions to figure out ranges or available options ...).

The EQ was created so we won't have to write "manual" queries anymore but it looks like no one expected that someone would like to retrieve any data from these queries, just like we can/do from the good old Drupal\Core\Database\Query\Select.

Additionally there is no way to reset any of the parameters since there are no referenced getters. So if I want to completely change the order/sort of the results I cannot just unset the already applied sorts or conditions like I can do in the simple query where there are the &conditions() or &getOrderBy() methods.

For me, this is critical for my application and without this I have to use simple query instead because even though I can get the protected data via reflection I cannot unset it, only add to it or alter it.

Implemented:

  • &getConditions()
  • &getSorts()
  • &getRange()
  • ...
✨ Feature request
Status

Needs work

Version

11.0 πŸ”₯

Component

entity system

Created by

Live updates comments and jobs are added and updated live.
  • Needs tests

    The change is currently missing an automated test that fails when run with the original code, and succeeds when the bug has been fixed.

  • Needs subsystem maintainer review

    It is used to alert the maintainer(s) of a particular core subsystem that an issue significantly impacts their subsystem, and their signoff is needed (see the governance policy draft for more information). Also, if you use this tag, make sure the issue component is set to the correct subsystem. If an issue significantly impacts more than one subsystem, use needs framework manager review instead.

Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

Production build 0.71.5 2024