So, I have the following schema:
const Players = new mongoose.Schema({
discordID: {
type: String,
unique: true,
required: function () {
return typeof this.discordID !== "string" && this.discordID !== null
}
})
My point is to make discordID
unique, but only if it's not null
or ""
.
I heard about sparse, but it doesn't seem to work as I want it to. I get duplication errors every time I'm trying to insert 2+ documents with discordID set to null
(I tried sparse: true
and index: {sparse: true, unique: true}
).
Is there something I can do? I want to keep this validation on the schema level if it's only possible.