Create new sparse, unique index in Mongo CLoud

Hi @Andre-John_Mas,

You need to use the Data Explorer and specify the field with its index order (ASC 1, DESC -1)

{
mobile : 1
}

And in the option section you need to specify both sparse and unique as true:

{
      "sparse": true,
      "unique": true
  }

Screen Shot 2020-08-26 at 17.14.35

More info here: Manage Indexes in Data Explorer — MongoDB Cloud Manager

Best regards,
Pavel