diff --git a/Notesnook.API/Controllers/MonographsController.cs b/Notesnook.API/Controllers/MonographsController.cs index a91b7b0..024b4f7 100644 --- a/Notesnook.API/Controllers/MonographsController.cs +++ b/Notesnook.API/Controllers/MonographsController.cs @@ -102,7 +102,7 @@ namespace Notesnook.API.Controllers var monographs = (await Monographs.Collection.FindAsync(Builders.Filter.Eq("UserId", userId), new FindOptions { - Projection = Builders.Projection.Include("Id"), + Projection = Builders.Projection.Include("_id"), })).ToEnumerable(); return Ok(monographs.Select((m) => m.Id)); }