class name is Usersdata
In mongo
{id:100,createdby:900,.......}
{id:200,createdby:900,.......}
{id:300,createdby:900,.......}
{id:400,createdby:800,.......}
{id:500,createdby:800,.......}
I want to fetch all records having createdby=900..I tried this
Userdata.where(createdby: 900)
But not working