graphql + flutter

[mongodb] 데이터 조회,논리검색

으누아빠 2023. 12. 15. 00:32
반응형

전체 조회

db.collection 명.find();

조건 검색

db.collection 명.find({"필드명": "검색"});

논리 검색

db.collection 명.find({ $or: [ { "필드명": "검색어" }, { "필드명": "검색어" } ] }) // OR 검색
db.collection 명.find({ $and: [ { "필드명": "검색어" }, { "필드명": "검색어" } ] }) // AND 검색
db.collection 명.find({ $not: [ { "필드명": "검색어" }, { "필드명": "검색어" } ] }) // 하나라도 만족하지 않는 조건검색
db.collection 명.find({ $nor: [ { "필드명": "검색어" }, { "필드명": "검색어" } ] }) // 모두 만족하지 않는 조건검색