entityQuery not passing the correct operator to its functions

Created on 24 March 2025, 12 days ago

Problem/Motivation

\Drupal\graphql_core_schema\Plugin\GraphQL\EntityQueryBase::buildFilterConditions() is not passing the correct operator to \Drupal\graphql_core_schema\Plugin\GraphQL\EntityQueryBase::isUnaryOperator(),\Drupal\graphql_core_schema\Plugin\GraphQL\EntityQueryBase::isRangeOperator() and \Drupal\graphql_core_schema\Plugin\GraphQL\EntityQueryBase::isNullOperator()

Steps to reproduce

Do the following graphql query on Drupal 11...

query SearchContent($limit: Int, $offset: Int, $sort: [EntityQuerySortInput!]) {
  entityQuery(
    entityType: NODE
    filter: {conditions: [{field: "type", value: "article", operator: EQUAL}], groups: [], conjunction: AND}
    sort: $sort
    limit: $limit
    offset: $offset
  ) {
    items {
      id
    }
    total
  }
}

with the variables:

{
  "limit": 10,
  "offset": 0,
  "sort": [
    {
      "field": "created",
      "direction": "DESC"
    }
  ]
}

Proposed resolution

Passed the mapped operator to these functions.

This is a critical bug because this breaks a site during a D10 to D11 upgrade due to a deprecation changing to an exception.

Remaining tasks

User interface changes

None

API changes

None

Data model changes

None

πŸ› Bug report
Status

Active

Version

1.0

Component

Code

Created by

πŸ‡¬πŸ‡§United Kingdom alexpott πŸ‡ͺπŸ‡ΊπŸŒ

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

Merge Requests

Comments & Activities

Production build 0.71.5 2024