-
Notifications
You must be signed in to change notification settings - Fork 49
Open
Labels
wontfixThis will not be worked onThis will not be worked on
Description
this fails
// errors on non-null fields are propagated up to the first nullable field
// and an error message is added
assertResult("""{ p: person { name, company2(name: "ACME2") { name } } }""",
mapOf("p" to listOf(null)))
@Test
fun dynamicMutationConflictsWithAutoGenerated() {
val schema = """
type Person {
name: String
company: Company @relation(name:"WORKS_AT")
company2: Company! @relation(name:"WORKS_AT")
companies: [Company]! @relation(name:"WORKS_AT")
companies2: [Company!]! @relation(name:"WORKS_AT")
}
type Company {
name: String
}
"""
Metadata
Metadata
Assignees
Labels
wontfixThis will not be worked onThis will not be worked on