I have the following chained usage I'd like to mock
Example.objects.order_by(order_by).filter(filters).all()[:page + 1]
It's quite easy to mock all methods involved, but I got no idea how to mock the slicing, given that it's not an "actual" python slice, it translates into LIMIT/OFFSET.
How can this be mocked?