How combine two or more querysets in a Django view?

from itertools import chain
result = list(chain(*docs))