- Issue created by @alexpott
- π¬π§United Kingdom alexpott πͺπΊπ
The test fail is unrelated to this issue and is fixed by π RouteTest::testResolveNode() fails on HEAD Active
\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()
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"
}
]
}
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.
None
None
None
Active
1.0
Code
The test fail is unrelated to this issue and is fixed by π RouteTest::testResolveNode() fails on HEAD Active