Improve documentation on how to provide access to views

Created on 14 March 2024, about 1 year ago
Updated 3 April 2024, about 1 year ago

Problem/Motivation

If I use the views extension and expose a view, the view can only be loaded by admins. This is an issue with the view implementation of access hooks and should be fixed by this module as its needed for the entity query.

Proposed resolution

Implement access hook for view entity to allow view access for views that are exposed by the graphql compose graphql_compose_server

📌 Task
Status

Active

Version

1.0

Component

Documentation

Created by

🇨🇭Switzerland Siegrist

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

Comments & Activities

  • Issue created by @Siegrist
  • 🇨🇭Switzerland luksak

    I'm having this issue as well. @Siegrist have you found a solution to this?

  • 🇨🇭Switzerland luksak

    Ok, this works as designed. This is the solution to this problem: 🐛 Views - Anonymous User Fixed

    I was able to make the code a bit more generic:

    /**
     * Implements hook_ENTITY_TYPE_access().
     */
    function HOOK_view_access(View $view, $operation, $account) {
      $route_name = \Drupal::routeMatch()->getRouteName();
      if ($operation === 'view' && str_starts_with($route_name, 'graphql.query')) {
        return AccessResult::allowedIf($view->getExecutable()->access('default', $account));
      }
      return AccessResult::neutral();
    }

    Maybe that should be documented in the docs here? https://graphql-core-schema.netlify.app/schema-extensions/views.html That's at least where I was looking for why this isn't working.

Production build 0.71.5 2024