Skip to content

Commit

Permalink
fix: create_filters option now does what it says (#414)
Browse files Browse the repository at this point in the history
Co-authored-by: zbynek.skola <zbynek.skola@firma.seznam.cz>
  • Loading branch information
skolazbynek and zbynek.skola committed Sep 13, 2024
1 parent b30bc92 commit eb9c663
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion graphene_sqlalchemy/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -440,6 +440,7 @@ def __init_subclass_with_meta__(
batching=False,
connection_field_factory=None,
_meta=None,
create_filters=True,
**options,
):
# We always want to bypass this hook unless we're defining a concrete
Expand Down Expand Up @@ -474,7 +475,7 @@ def __init_subclass_with_meta__(
only_fields=only_fields,
exclude_fields=exclude_fields,
batching=batching,
create_filters=True,
create_filters=create_filters,
connection_field_factory=connection_field_factory,
)

Expand Down

0 comments on commit eb9c663

Please sign in to comment.