AssertionError after changing a field's reference method to "Views: Filter by an entity reference view"

Created on 30 August 2023, over 1 year ago
Updated 19 June 2024, 10 months ago

After changing a field's reference method to "Views: Filter by an entity reference view," I am unable access the edit form for the field.

I was working through instructions provided in a stackexchange answer here. In case the link becomes unavailable, here are the steps that produce the error:

1. Edit Entity Reference Field Settings:

    Navigate to "Structure" > "Content types."
    Choose the content type that contains the entity reference field.
    Edit the field settings for your entity reference field.

2. Change "Reference Method":

    In the field settings, find the "Reference method" option.
    Change it to "Views: Filter by an entity reference view."

3. Configure Entity Reference View:

    Create a new entity reference view or select an existing one.
    The view should list the nodes you want to appear as options in your exposed filter.
    Configure the view to display the fields you want as options in the exposed filter.

4. Configure Exposed Filter in Views:

    Create or edit a view that displays the content you want to filter.
    In the view, expose the desired entity reference field as a filter.
    Under "Filter type to expose," select "Grouped filters."

5. Choose "Grouped Filters":

    Choosing "Grouped filters" will provide a better user experience by using a select input with options.

At this point in the instructions, I got stuck, so I could not do step 6 or 7. And then, when I visit the edit form for the entity reference field, I get this error:

The website encountered an unexpected error. Please try again later.
AssertionError: Cannot load the "view" entity with NULL ID. in assert() (line 295 of core\lib\Drupal\Core\Entity\EntityStorageBase.php).

assert(, 'Cannot load the "view" entity with NULL ID.') (Line: 295)
Drupal\Core\Entity\EntityStorageBase->load(NULL) (Line: 122)
Drupal\views\Views::getView(NULL) (Line: 211)
Drupal\views\Plugin\EntityReferenceSelection\ViewsSelection->initializeView(NULL, 'CONTAINS', 0, NULL) (Line: 261)
Drupal\views\Plugin\EntityReferenceSelection\ViewsSelection->getDisplayExecutionResults(NULL, 'CONTAINS', 0) (Line: 234)
Drupal\views\Plugin\EntityReferenceSelection\ViewsSelection->getReferenceableEntities() (Line: 618)
Drupal\Core\Field\Plugin\Field\FieldType\EntityReferenceItem->getSettableOptions(Object) (Line: 138)
Drupal\Core\Field\Plugin\Field\FieldWidget\OptionsWidgetBase->getOptions(Object) (Line: 32)
Drupal\Core\Field\Plugin\Field\FieldWidget\OptionsButtonsWidget->formElement(Object, 0, Array, Array, Object) (Line: 353)
Drupal\Core\Field\WidgetBase->formSingleElement(Object, 0, Array, Array, Object) (Line: 92)
Drupal\Core\Field\WidgetBase->form(Object, Array, Object) (Line: 287)
Drupal\Core\Field\FieldItemList->defaultValuesForm(Array, Object) (Line: 125)
Drupal\field_ui\Form\FieldConfigEditForm->form(Array, Object) (Line: 106)
Drupal\Core\Entity\EntityForm->buildForm(Array, Object)
call_user_func_array(Array, Array) (Line: 536)
Drupal\Core\Form\FormBuilder->retrieveForm('field_config_edit_form', Object) (Line: 283)
Drupal\Core\Form\FormBuilder->buildForm(Object, Object) (Line: 73)
Drupal\Core\Controller\FormController->getContentResult(Object, Object)
call_user_func_array(Array, Array) (Line: 123)
Drupal\Core\EventSubscriber\EarlyRenderingControllerWrapperSubscriber->Drupal\Core\EventSubscriber\{closure}() (Line: 580)
Drupal\Core\Render\Renderer->executeInRenderContext(Object, Object) (Line: 124)
Drupal\Core\EventSubscriber\EarlyRenderingControllerWrapperSubscriber->wrapControllerExecutionInRenderContext(Array, Array) (Line: 97)
Drupal\Core\EventSubscriber\EarlyRenderingControllerWrapperSubscriber->Drupal\Core\EventSubscriber\{closure}() (Line: 169)
Symfony\Component\HttpKernel\HttpKernel->handleRaw(Object, 1) (Line: 81)
Symfony\Component\HttpKernel\HttpKernel->handle(Object, 1, 1) (Line: 58)
Drupal\Core\StackMiddleware\Session->handle(Object, 1, 1) (Line: 48)
Drupal\Core\StackMiddleware\KernelPreHandle->handle(Object, 1, 1) (Line: 106)
Drupal\page_cache\StackMiddleware\PageCache->pass(Object, 1, 1) (Line: 85)
Drupal\page_cache\StackMiddleware\PageCache->handle(Object, 1, 1) (Line: 48)
Drupal\Core\StackMiddleware\ReverseProxyMiddleware->handle(Object, 1, 1) (Line: 51)
Drupal\Core\StackMiddleware\NegotiationMiddleware->handle(Object, 1, 1) (Line: 23)
Stack\StackedHttpKernel->handle(Object, 1, 1) (Line: 718)
Drupal\Core\DrupalKernel->handle(Object) (Line: 19)

There does not appear to be a good workaround for this problem, aside from rolling back my database. I can't delete the field because that will destroy data.

πŸ› Bug report
Status

Needs work

Version

11.0 πŸ”₯

Component
FieldΒ  β†’

Last updated about 5 hours ago

Created by

πŸ‡ΊπŸ‡ΈUnited States arnoldbird

Live updates comments and jobs are added and updated live.
  • Needs tests

    The change is currently missing an automated test that fails when run with the original code, and succeeds when the bug has been fixed.

  • Needs issue summary update

    Issue summaries save everyone time if they are kept up-to-date. See Update issue summary task instructions.

Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

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

    I was able to recover the site by changing the field settings programmatically:

    $field_definitions = \Drupal::service('entity_field.manager')->getFieldDefinitions('node', 'my_content_type');
    
    if (isset($field_definitions['field_my_field'])) {
        $current_settings = $field_definitions['field_my_field']->get('settings');
    
        $current_settings['handler'] = 'default:node';
    
        $field_definitions['field_my_field']->save();
    }
  • πŸ‡ΊπŸ‡ΈUnited States arnoldbird

    In step 3, I didn't realize that there is an entity reference display option, and that is what the instruction mean by "Create a new entity reference view". So I never really performed step 3. Still, it doesn't seem like it should be possible through any combination of actions to produce an error that blocks the user from editing a field's settings.

  • Status changed to Needs review 10 months ago
  • πŸ‡¨πŸ‡¦Canada nord102

    For some reason, the configuration that is being used by core/modules/views/src/Plugin/EntityReferenceSelection/ViewsSelection.php > initializeView() has empty view information in $this->getConfiguration()['view']. The correct view information seems to be in $this->getConfiguration()['handler_settings']['view'] instead.

    I've created a patch that will use the ['handler_settings']['view'] as a fallback when ['view'] is NULL

  • Status changed to Needs work 10 months ago
  • πŸ‡ΊπŸ‡ΈUnited States smustgrave

    Can we turn to a MR and possible get a test case showing the issue?

    Also tagging for issue summary as that should target the standard template.

  • πŸ‡¬πŸ‡§United Kingdom mistergroove

    Does this also apply to drupal 10.2.6? I have the same issue where ever I use "Views: Filter by an entity reference view" and edit the the node form.

    For example:

    This entity (node: 474) cannot be referenced.
    
Production build 0.71.5 2024