FieldResults data producer returns schema mismatch for empty boolean value

Created on 20 March 2025, 17 days ago

Problem/Motivation

Discovered this issue on checking for status value on an unpublished node. Status uses the boolean field type and the FieldResults data producer has an empty check that is throwing an exception incorrectly when the status is FALSE.

Steps to reproduce

Create a node that is unpublished. In the graphql explorer, set the path to the new entity url alias. Everything shows up find for the entity until you add a status field which returns the thrown exception cause the field is required and is technically empty.

Proposed resolution

Creating a patch here that skips empty logic check when plugin type is boolean.

πŸ› Bug report
Status

Active

Version

2.3

Component

Code

Created by

πŸ‡ΊπŸ‡ΈUnited States apmsooner

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

Merge Requests

Comments & Activities

  • Issue created by @apmsooner
  • πŸ‡ΊπŸ‡ΈUnited States apmsooner
  • Pipeline finished with Success
    17 days ago
    Total: 363s
    #453397
  • πŸ‡¦πŸ‡ΊAustralia almunnings Melbourne, πŸ‡¦πŸ‡Ί

    Have you got a test that can recreate your problem?
    I tried with this:

    ./web/modules/contrib/graphql_compose/tests/src/Functional/Core/EntityNodeTest.php
    
    ./vendor/bin/phpunit -c /app/web/core/ --stop-on-failure web/modules/contrib/graphql_compose/tests/src/Functional/Core/EntityNodeTest.php
    
      /**
       * Test unpublished node.
       */
      public function testUnpublished() {
        $this->node->setUnpublished();
        $this->node->save();
    
        $query = <<<GQL
          query {
            node(id: "{$this->node->uuid()}") {
              ... on NodeInterface {
                id
                status
                title
              }
            }
          }
        GQL;
    
        $content = $this->executeQuery($query);
        dump($content);
      }
    

    And got back

    1) Drupal\Tests\graphql_compose\Functional\Core\EntityNodeTest::testUnpublished
    PHPUnit\Framework\Exception: array:1 [
      "data" => array:1 [
        "node" => array:3 [
          "id" => "d22b45e4-0e13-4c57-aecd-e894030c1915"
          "status" => false
          "title" => "Test"
        ]
      ]
    ]
    

    Is your problem happening as a part of a larger query?

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

    Let me see. It would need to happen in the RoutesTest.php I would guess since thats where we're seeing it.

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

    Okay, i'm also unable to produce this issue on another site now and I think what we're seeing here is from another patch at https://www.drupal.org/project/graphql_compose/issues/3507357 πŸ› Cannot return null for non-nullable field for Link Field in Paragraph Active so I'll modify that patch and I'm sure that will fix this issue and will close accordingly.

  • πŸ‡ΊπŸ‡ΈUnited States apmsooner
Production build 0.71.5 2024