Mock Service Returning Incorrect Example Response

Hi, I created a mock service for my collection (C) that contains one request (R).
Request R accepts, at most, 3 query parameters. I then saved all examples of request R for all possible combinations of query parameters.

When calling the actual request R without any query parameter, it responded with HTTP 401 which I saved as an example to be used in mocking. However, when calling the mock endpoint for that request without any query parameter, it did not return the exact example saved for that request. Instead, the mock service returned another example that is meant for a request that takes in all 3 query parameters.

Has anyone experienced the same issue?