Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

mongoose string index

const schema = new Schema({
  title: {
    type: String,
    required: true,
    unique: true,
    index: 'text'
  }
})
 
PREVIOUS NEXT
Tagged: #mongoose #string #index
ADD COMMENT
Topic
Name
9+3 =