so lets say we have a simple query using django orm
filterd = User.objects.exclude(id = request.user.id ).filter(username=data['username'] )
this is suppose to return some objects but it returns none ! obviously i'm doing something wrong as i' not comfortable with django ORM yet , so i'll help alot to know what query is exactly executed in this line
i've searched around i found this
print(filter.query)
but i get
AttributeError: type object 'filter' has no attribute 'query'
i guess filter is None when no object is returned so ... what should i do ?