SEO & Meta
Static meta
const routes: Routes = [
{
path: 'with-user',
component: PostsIndexComponent,
data: operate(
reset(all),
populate({
from: posts,
to: users,
idPath: 'userId',
idSource: posts,
operations: [OperationContext.Many],
}),
getMany(posts, { params: { _page: '1', _limit: '5' } }),
staticMeta({
title: 'Posts with user',
description: 'Look at posts composed by users.',
}),
),
];Active meta
Last updated