You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[RFC] Implementations of interfaces can include additional field arguments
This proposal extends the definition of a legal implementation of an interface to allow for additional field arguments, provided that those arguments are not required.
```
interface I {
field(arg: String): String
}
type T implements I {
field(arg: String, other: String): String
}
type T implements I {
field(arg: String, other String!): String
}
```
0 commit comments