Skip to content
Closed
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
2 changes: 1 addition & 1 deletion graphene/types/mutation.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def __init_subclass_with_meta__(
), f'All interfaces of {cls.__name__} must be a subclass of Interface. Received "{interface}".'
fields.update(interface._meta.fields)

if not output:
if output:
# If output is defined, we don't need to get the fields
fields = {}
for base in reversed(cls.__mro__):
Expand Down