When requesting a draft, I only see it in the primary language of my website. According to the docs, when setting a draftId the criteria gets ignored. Then how am I supposed to get this draft in a different locale ?
Here's my query
return [
'class' => EntryResource::class,
'criteria' => ['section' => 'homepageAds', 'site' => $site],
'paginate' => false,
'draftId' => $draftId,
'transformer' => new HomepageAdsTransformer($version)
];
When requesting a draft, I only see it in the primary language of my website. According to the docs, when setting a
draftIdthecriteriagets ignored. Then how am I supposed to get this draft in a different locale ?Here's my query