Here's my component:
{
path:"aaaa",
component: aaaa,
data: {
message: "this is aaaa"
},
resolve: {
setDraftResolver: SetDraftResolver, // I want this to run as normal
draft: GetDraftResolver, // I want this to operate as if runGuardsAndResolvers: "always",
},
// runGuardsAndResolvers: "always",
}
I have multiple resolvers in one component and I want only the GetDraftResolver to run every time. The others I want to run as they are currently.
Is this something that's possible to do in Angular?