Mongodb Populate is not populating document in Node.js
I am using typegoose and my Query and QueryRule models are as below. export class Query { @prop() queryRule: Ref<QueryRule>; } export class QueryRule { @prop() condition: Condition; @prop() rules: Ref<QueryRule | ChildRule>[]; } I am using the following query…