Hi, how can I include more than one reference when calling the entries?
I have this code
const builderInterview = await builder
.get('interview', {
options: { includeRefs: true },
query: { 'data.slug': params.slug }
})
.promise();
Which has a field that is a reference to a Chat Highlight and that Chat Highlight also has a field which is a reference to an author. The author entire shows like this:
@type: "@builder.io/core:Reference"
id: "dc239b9b5be441c29eb7f85b6fdb4641"
model: "hosts"
Is there a way to include more than one reference in the tree?
thanks