Hi,
I'm using $prismic.api.query to retrieve the news of my website like this
const prismicActualites = await $prismic.api.query(
$prismic.predicates.at('document.type','actualite'),
{
lang: localeForPrismic,
pageSize:5,
page:1,
orderings: '[my.actualite.date desc]'
},
);
and I would like to retrieve at the same time data from another customType : fetchLinks: 'general.boutonLireArticle'
But I don't know where to put this in the query above ?