function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Stéphane CStéphane C 

Navigate to a precise list filter with LWC

Hello,
So I'm trying to use navigation with Lightning Web Components on the Community. I'd like to navigate to the Case List View and set up this view automatically to a certain filter.

The navigation code I use :
this[NavigationMixin.Navigate]({
   type: 'standard__objectPage',
   attributes:
   {
      objectApiName: 'Case',
      actionName: 'list',
   },
   state:
   {
      filterName: '00B1o000005X6Z0EAK'
   }
});

As said in the doc, filterName identifies the target list view so I set the Id of my ListView (I tried with different one).

My issue is that it's always redirect me to the same ListView whatever I do (excepting an "invalidate page" when what is set is nonsense).

Thank you.