Open
Description
based on this stackoverflow question, graphql doesn't support interfaces with input types, and yet strawberry allows this:
import strawberry
@strawberry.interface
class SomeInterface:
some_arg: str
@strawberry.input
class SomeInput(SomeInterface): # this should throw an error
another_arg: str