How can I fetch more than 1000 record from data store and put all in one single list to pass to django?
To add the contents of the two queries together:
list1 = first query list2 = second query list1 += list2
List 1 now contains all 2000 results.