We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a26cf2b commit 7f1a717Copy full SHA for 7f1a717
graphene_sqlalchemy/types.py
@@ -110,7 +110,7 @@ def construct_fields(
110
inspected_model = sqlalchemy.inspect(model)
111
# Gather all the relevant attributes from the SQLAlchemy model in order
112
all_model_attrs = OrderedDict(
113
- inspected_model.column_attrs.items() +
+ inspected_model.column_attrs.items()
114
+ inspected_model.composites.items()
115
+ [(name, item) for name, item in inspected_model.all_orm_descriptors.items()
116
if isinstance(item, hybrid_property)]
0 commit comments