Skip to content
This repository was archived by the owner on Jul 23, 2024. It is now read-only.

Relationship field query errors out when Post that it is set to is deleted #300

@dChiamp

Description

@dChiamp

Related to issues #85, #100.

Say you have a post relationship field called "Editor Credit" in a Post custom field group ("Work Meta").
If a selected post within that relationship field is subsequently deleted, the query will return a 500 error.
This is difficult to debug because the relationship field that held the deleted post appears empty, but the error persists.
I would instead expect the system to return null (which it does when logged in) and give no errors.

Example query:

query PAGES($uri: String!) {
  nodeByUri(uri: $uri) {
    ... on Page {
      title
      id
      uri
      workMeta {
        editorCredit {
          ... on Page {
            title
            id
          }
        }
      }
    }
  }
}

Results in 500 "Internal server error"

Tested on:

  • WordPress 5.8.1
  • Advanced Custom Fields 5.10.2
  • WP GraphQL 1.6.7
  • WPGraphQL for ACF 0.5.2

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions