たとえば、次のような Post スキーマがあるとします。
var Schema = new db.Schema({
title : String
, text : String
// Denormalize by using user name
, author : String
, tags: [String]
, comments: [Comment]
});
次のように特定のタグを一致させようとしています。
function getPostByTag(tag, callback) {
Post.find().where({"tags.value": tag}).run(callback);
}
しかし、それはすべてを返しています。私は何を間違っていますか?