카테고리 없음

[MongoDB] E QUERY [thread1] ReferenceError: limit is not defined :

AM0530 2018. 1. 30. 15:44

- 입력한 쿼리 

> db.places.find(

... {location:{$geoWithin:{$center:[[127.00378,37.29274],10]}},

... category:"은행"}),limit(5);


- 오류 내용

2018-01-30T15:34:34.701+0900 E QUERY    [thread1] ReferenceError: limit is not defined :

@(shell):3:17


- 틀린 부분 

... category:"은행"}),limit(5);


==> . 대신 , 써서 생긴 오류 


- 수정해서 잘 돌아가는 쿼리 + 실행 결과 

> db.places.find(

... {location:{$geoWithin:{$center:[[127.00378,37.29274],10]}},

... category:"은행"}).limit(5);