{
  "runOn": [
    {
      "maxServerVersion": "4.1.9"
    }
  ],
  "data": [
    {
      "_id": 1,
      "x": 11
    },
    {
      "_id": 2,
      "x": 22
    },
    {
      "_id": 3,
      "x": 33
    }
  ],
  "collection_name": "Updatemany_hint",
  "tests": [
    {
      "description": "Unacknowledged updateMany with hint string fails with client-side error on server < 4.2",
      "operations": [
        {
          "object": "collection",
          "collectionOptions": {
            "writeConcern": {
              "w": 0
            }
          },
          "name": "updateMany",
          "arguments": {
            "filter": {
              "_id": {
                "$gt": 1
              }
            },
            "update": {
              "$inc": {
                "x": 1
              }
            },
            "hint": "_id_"
          },
          "error": true
        }
      ],
      "expectations": {},
      "outcome": {
        "collection": {
          "data": [
            {
              "_id": 1,
              "x": 11
            },
            {
              "_id": 2,
              "x": 22
            },
            {
              "_id": 3,
              "x": 33
            }
          ]
        }
      }
    },
    {
      "description": "Unacknowledged updateMany with hint document fails with client-side error on server < 4.2",
      "operations": [
        {
          "object": "collection",
          "collectionOptions": {
            "writeConcern": {
              "w": 0
            }
          },
          "name": "updateMany",
          "arguments": {
            "filter": {
              "_id": {
                "$gt": 1
              }
            },
            "update": {
              "$inc": {
                "x": 1
              }
            },
            "hint": {
              "_id": 1
            }
          },
          "error": true
        }
      ],
      "expectations": {},
      "outcome": {
        "collection": {
          "data": [
            {
              "_id": 1,
              "x": 11
            },
            {
              "_id": 2,
              "x": 22
            },
            {
              "_id": 3,
              "x": 33
            }
          ]
        }
      }
    }
  ]
}
