값이 null이 아닌 Mongoose 쿼리 다음 쿼리를 수행하려고 합니다. Entrant .find enterDate : oneMonthAgo confirmed : true .where('pincode.length > 0') .exec (err,entrants)-> 제가 where 조항을 제대로 하고 있나요?다음 위치에서 문서를 선택합니다.pincode는 늘이 아닙니다.(query api를 사용할 때) 다음과 같이 할 수 있습니다. Entrant.where("pincode").ne(null) ...그 결과 다음과 같은 mongo 쿼리가 발생합니다. entrants.find({ pincode: { $ne: null } }) 도움이 될 수 있는 몇 가지 링크: mongoose 쿼리 API mongo 쿼리 연..