When I log the object right before saving it, it looks like this:
{
"type": "events",
"labels": [
"abc",
"123"
],
"keywords": [
[
"a",
"b",
"c",
"d",
"e"
],
[
"1",
"2",
"3",
"4",
"5"
]
],
"_id": "4d9ddac669cb3bf5e855a366"
}
but then if i go into the mongo shell it saves like this...
{
"_id": ObjectId("4d9ddac669cb3bf5e855a366"),
"keywords": [
],
"labels": [
"abc",
"123"
],
"type": "events"
}
any ideas?