Hi, I've been trying to make a query with nested includes that looks like this:
// https://example.com/api/contacts?include=conversations.messages
const response = await contactSet.includeCollection(r => r.conversations.messages).findAll();
But I'm getting this error:
Property 'messages' does not exist on type 'PropertyInfoProxyRoot<EntityCollection<Conversation>>'
Is there any way that I can get that query?
Hi, I've been trying to make a query with nested includes that looks like this:
But I'm getting this error:
Is there any way that I can get that query?