Improve performance

This commit is contained in:
syuilo 2018-11-03 15:21:07 +09:00
parent 67697a7aa6
commit afc9caf7bf
No known key found for this signature in database
GPG Key ID: BDC4C49D06AB9D69
1 changed files with 5 additions and 1 deletions

View File

@ -19,5 +19,9 @@ export const packEmojis = async (
host: string,
// MeiTODO: filter
) => {
return await Emoji.find({ host });
return await Emoji.find({ host }, {
fields: {
_id: false
}
});
};