additional slug in getOne
How to custom more in show page like
show: '/socialnetworks/show/:something/:id',
show: '/socialnetworks/show/:something/:id',
show action path for a resource by defining it in the resources configuration of the <Refine> component. You can add additional parameters to the path, such as :something in your case. Here's an example:show action path for the socialnetworks resource is defined as /socialnetworks/show/:something/:id. The :something and :id are placeholders for specific values that you can use in your component.show page of a resource, you can pass these parameters to the navigation function. The existing parameters from the URL and the meta property of these functions will be used to determine the additional parameters when composing the path.meta props of the related hooks and components.resources section of the <Refine> component documentation (https://refine.dev/docs/api-reference/core/components/refine-config/) and the support thread on Discord (ask-any-questionHow to have a resource route inside another resource route).showshowshowresourcesresources<Refine><Refine>:something:somethingsocialnetworks/socialnetworks/show/:something/:id:idresources={[
{
name: "socialnetworks",
list: SocialNetworksList,
show: "/socialnetworks/show/:something/:id",
create: CreateSocialNetwork,
edit: EditSocialNetwork,
icon: <Build />,
},
]}