Schema
type Query{
test: [BaseType]
}
interface BaseType {
name: ID!
}
type ConcreteType implements BaseType {
name: ID!
}
Query
query {
test {
__typename
}
}
Response
{
"errors": [
{
"message": "Could not resolve the actual object type from `HotChocolate.Language.NullValueNode` for the abstract type `test`.",
"locations": [
{
"line": 2,
"column": 3
}
],
"path": [
"test",
0
]
}
],
"data": {
"test": [
null
]
}
}
Expected behavior
null should be returned in list without errors.
Additional context
HC v11.2.2
Schema
Query
Response
Expected behavior
nullshould be returned in list without errors.Additional context
HC v11.2.2