graphql / composite-schemas-spec

MIT License
30 stars 9 forks source link

Adds Input With Missing Required Fields #41

Open PascalSenn opened 3 months ago

michaelstaib commented 3 months ago
# warning

input Input1 {
  field1: String
}

input Input1 {
  field2: String
}

# error

input Input1 {
  field1: String!
}

input Input1 {
  field2: String
}