Incoherent data with multiple createServerData$ in routeData
With the following route:
I'm expecting an array of different objects for the members and the invitations. But when consoling/using the two data sets,
invitations
has the same content than members
. If I change the declaration order in routeData
, then members
has the same content than invitations
.
Is this expected? Does that mean we can only have one createServerData$
in routeData
?1 Reply
GitHub
Incoherent data with multiple
createServerData$
in routeData
· ...With the following route: export function routeData({ params }: RouteDataArgs) { const members = createServerData$( async (organisationId) => { const members = await prisma.membership.findMa...