MCPcopy
hub / github.com/django/django / get_source_fields

Method get_source_fields

django/db/models/expressions.py:468–470  ·  view source on GitHub ↗

Return the underlying field types used by this aggregate.

(self)

Source from the content-addressed store, hash-verified

466 return cols
467
468 def get_source_fields(self):
469 """Return the underlying field types used by this aggregate."""
470 return [e._output_field_or_none for e in self.get_source_expressions()]
471
472 def asc(self, **kwargs):
473 return OrderBy(self, **kwargs)

Callers 1

_resolve_output_fieldMethod · 0.95

Calls 1

Tested by

no test coverage detected