Możesz zachować argumenty jako dict i wysłać do metody filter() tylko te z nich, które nie są równe Brak:
arguments = {"A_name": A, "B_name": B, "C_name": C}
arguments_without_null = {k: v for k, v in arguments.items() if v is not None}
queryset = User.objects.values().filter(**arguments_without_null)