문제 : 특정 종목의 가장 최근자 가격 정보를 가져오려 했다.Date 필드의 값을 기준으로 내림차순 정렬을 하고, 최상단에 위치한 데이터를 가져오려 했는데Date필드의 데이터 타입이 문자열이어서나의 의도대로 정렬이 이뤄지지 않았다. 해결 : 아래 내용을 참고했다.https://stackoverflow.com/questions/22034195/update-string-to-date-object-in-mongodb Update string to Date object in mongodbI'm working on mongodb and node.js and i came a across a scenario. I'm bulk inserting data around 200 million record. In those ..