Reputation: 1019
So here's my mongodbSchema:
Schema = new SimpleSchema({
room: { type: [String] }
});
Room = new Mongo.Collection('room')
Room.attachSchema(Schema)
Now when I try to insert an array into it
Room.insert(["hello", "dog"]);
it gives me this error, "RangeError: Maximum call stack size exceeded"
Upvotes: 0
Views: 63