func (r *UserComparatorRepositoryMongo) FindByCityIn(arg0 context.Context, arg1 []string) ([]*UserModel, error) {
    cursor, err := r.collection.Find(arg0, bson.M{
        "city": bson.M{
            "$in": arg1,
        },