Skip to content

Releases: ChilliCream/graphql-platform

0.3.1

27 Jul 07:05
37f8b51
Compare
Choose a tag to compare
  • Write schema errors to debug.

0.3.0

14 Jul 21:02
793343f
Compare
Choose a tag to compare
  • Added Query Validation Rules
    • 5.2.3.1 Single root field
    • 5.3.1 Field Selections on Objects, Interfaces, and Unions Types
    • 5.4.2 Argument Uniqueness
    • 5.4.2.1 Required Arguments
    • 5.8.1 Variable Uniqueness
  • Enum types are now recognised when specified in GraphQL syntax.
  • Fixed: Enum variable value serialisation error
  • Fixed: skip/include directives now show up via introspection

0.2.3

09 Jul 13:18
Compare
Choose a tag to compare
  • 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
    }

0.2.2

06 Jul 13:22
Compare
Choose a tag to compare
  • Provided symbol and source packages

0.2.1

05 Jul 09:44
Compare
Choose a tag to compare
  • Updated Package Details
  • Reconfigured Build Process

0.2.0

02 Jul 19:05
Compare
Choose a tag to compare
  • Introduced a long type
  • Added a generic value interface to the AST value nodes (IValueNode)

0.1.4

28 Jun 19:23
Compare
Choose a tag to compare

# Bug Fixes

  • The serialization of variables can now handle the multiple GraphiQL variants for variable serialization.

0.1.3

28 Jun 08:51
226ac00
Compare
Choose a tag to compare

Bug Fixes

  • ListType and NonNullType InstanceOfType fixed
  • Extended scalar types do not have to be registered

0.1.2

27 Jun 18:31
258b1bc
Compare
Choose a tag to compare

Bug Fixes

  • Fixed: Arguments that are null lead to errors when the argument type was a reference type.

0.1.1

26 Jun 07:49
e1ccfdf
Compare
Choose a tag to compare

Bug Fixes

  • Get-Requests that do not conform the GraphQL Get-Request structure will be forwarded to the next middleware.