似乎无法在Sym4 sonata admin中使用自定义视图为我的URL生成路由

So I've tried everything I can think off and I can't seem to get this. I've been following the https://symfony.com/doc/master/bundles/SonataAdminBundle/cookbook/recipe_custom_view.html guide and it works for two of the views but not the third and it exactly the same code.

service file

bundle.admin.graph_view:
    class: AppBundle\Admin\GraphViewAdmin
    arguments: [~,  ~, AppBundle:GraphViewCRUD]
    tags:
        - { name: sonata.admin, manager_type: orm, label: Graphs, group: "Dashboards",icon:'<i class="fa fa-tachometer"></i>' }

Controller

use Sonata\AdminBundle\Controller\CRUDController;
class GraphViewCRUDController extends  CRUDController
{
    public function listAction()
    {
        return $this->renderWithExtraParams('admin/graph-view.html.twig');
    }
}

Admin

use Sonata\AdminBundle\Admin\AbstractAdmin;
use Sonata\AdminBundle\Route\RouteCollection;

class GraphViewAdmin extends  AbstractAdmin
{
    protected $baseRoutePattern = 'graphview';
    protected $baseRouteName = 'graphview';

    protected function configureRoutes(RouteCollection $collection)
    {
        $collection->clearExcept(['list']);
    }

}

If someone can just show me my error pls oh and I have my template as

{% extends '@twig_sonata/standard_layout.html.twig' %}
{% block content %}
    <div class="row">
        <div class="col-md-12">
            <h3 class="border-bottom pb-10 mb-20">Welcome to the data page</h3>
            <table class="table table-striped table-dark" style="display: block;overflow-x: scroll;">
                <thead>


                </thead>
            </table>
        </div>
    </div>
{% endblock %}