Entity query filter and sort

Created on 11 March 2025, 25 days ago

How would I filter and sort using entity query? For example if on a content type I had field_reference and that pointed to another entity that had field_number, if I was going to add a condition or sort using entity query I would use field_reference.entity.field_number.

Now if I had field_custom with reference column that is that same entity reference I was expecting to use field_custom.reference.entity.field_number but that is throwing the error Invalid specifier 'entity'. Doesn't work if I use field_custom.reference.entity:type.field_number either.

✨ Feature request
Status

Active

Version

3.1

Component

Documentation

Created by

πŸ‡ΊπŸ‡ΈUnited States mrconnerton

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @mrconnerton
  • πŸ‡ΊπŸ‡ΈUnited States apmsooner

    I don't know for sure but try this:

    field_custom.reference__entity.field_number

    the custom field name with __entity appended (double underscore) is a computed property.

  • πŸ‡ΊπŸ‡ΈUnited States mrconnerton

    Getting closer. that produces an error SQLSTATE[42S22]: Column not found: 1054 Unknown column 'node__field_custom.field_custom_'. Running through it with xdebug, I see that Drupal\Core\Entity\Query\Sql\Tables::addField is called with $field = "field_custom.reference__entity.field_number", it does its bits to figure out the tables to join, but early on it runs $column = $field_storage->getMainPropertyName(); which returns null, so when it gets down to $sql_column = $table_mapping->getFieldColumnName($field_storage, $column);, inside that method the column name is getting appended as null since there isn't a primary property.
    $column_name = !in_array($property_name, $this->getReservedColumns()) ? $field_name . '_' . $property_name : $property_name;

    So I see where its breaking and technically why, but not sure how to resolve it. Will attack it more tomorrow.

  • πŸ‡ΊπŸ‡ΈUnited States apmsooner

    Ahh, yeah theres no main property on custom fields. Relationships are supported in views if you can go that route. The dot notation stuff on referenced entities I guess is specific for entity references at the field level. So you would otherwise probably have to go with the database api select query.

  • πŸ‡ΊπŸ‡ΈUnited States mrconnerton

    I was able to figure this out with your feedback digging through web/core/lib/Drupal/Core/Entity/Query/Sql/Tables.php with xdebug. The end string I used was field_custom.reference.reference__entity:node.field_number

    When this is broken in to specifiers for join tables:
    - field_custom is used as the base table
    - Although the main property is null, since the next specifier reference is a real column it takes precedence and the key is advanced
    - reference__entity:node is next and is used as the relationship_specifier. Since it's in the property definitions and is type DataReferenceDefinitionInterface, it joins the node table.
    - Works as expected from here with field_number

    I'm going to mark this works as designed, but it would be great to get this documented in some examples somewhere. I'm not sure the best place to put it. A new page under https://www.drupal.org/docs/extending-drupal/contributed-modules/contrib... β†’ ?

  • πŸ‡ΊπŸ‡ΈUnited States apmsooner

    Oh wow, thats awesome news! Yes, if you would create a new page there, that would be perfect and appreciated!

  • πŸ‡ΊπŸ‡ΈUnited States apmsooner

    @mrconnerton, I created a documentation page. Can you review this and improve if needed?

    https://www.drupal.org/docs/extending-drupal/contributed-modules/contrib... β†’

Production build 0.71.5 2024