I am trying to get the to 10 objects like :
q_auth = SearchQuerySet().filter(content=validate_query)
q_auth = q_auth[:10]
print type(q_auth)
The output I want is: <class 'haystack.query.SearchQuerySet'>
but I am getting is <type 'list'>
.
Can some one please help me out?