Hi,
While fetching linked documents, the "first_publication_date" and "last_publication_date" fields are missing from the response. How do I configure my query to have them included?
My current query looks like this:
const fetchLinks = ['location.name'];
const doc = await client.getByID(id, { fetchLinks });
console.log(doc.data.location.first_publication_date); // undefined
Thanks,
David.
