Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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