Can anyone please explain how to perform the $and filter rest api query with strapi v4? I am new to strapi and followed the guidance in the documentation but this does not work. Thanks alot!

I believe it should work. However can you try this


$and: [
   {
     student:{
         course:{
           $eq: 'Maths'
          },
     }
  },
  {
     student:{
         id:{
          $eq: 'Physics'
         },
     }
  },
 ]