GraphTypeFromType 获取 NullReferenceException
GraphTypeFromType gets NullReferenceException
我在使用 dotnet 的 Graphql 绑定时遇到此错误,可能是什么原因?
GraphQL.ExecutionError: Object reference not set to an instance of an object. ---> System.NullReferenceException: Object reference not set to an instance of an object.
at System.Object.GetType()
at GraphQL.Types.TypeExtensions.GraphTypeFromType(IType type, ISchema schema)
这是因为如果发送要执行的查询包含未知类型 GraphTypeFromType
将失败并出现该异常。
这实际上是 GraphQL.NET 中的一个错误,已修复 by this commit。
我在使用 dotnet 的 Graphql 绑定时遇到此错误,可能是什么原因?
GraphQL.ExecutionError: Object reference not set to an instance of an object. ---> System.NullReferenceException: Object reference not set to an instance of an object. at System.Object.GetType() at GraphQL.Types.TypeExtensions.GraphTypeFromType(IType type, ISchema schema)
这是因为如果发送要执行的查询包含未知类型 GraphTypeFromType
将失败并出现该异常。
这实际上是 GraphQL.NET 中的一个错误,已修复 by this commit。