github ChilliCream/graphql-platform 0.2.3

latest releases: 13.9.1-p.1, 14.0.0-p.93, 14.0.0-p.92...
5 years ago
  • Fixed Generic Type issues with Object Types

    The following code lead to a schema exception:

    Schema.Create(d => d.RegisterType<ObjectType<Foo<Bar>>>());

    The schema exception was caused by an invalid handling of the generic type names during resolver code generation. Moreover, the inferred object type name would have been Foo`1 which would have then caused another schema exception.

    We know create the following schema from the above code:

    type FooOfBar {
      Bar bar
    }

Don't miss a new graphql-platform release

NewReleases is sending notifications on new releases.