vintoware

Results 2 comments of vintoware

I have encountered the same issue as @Spaier on the latest `13.8.1` version where `builder.BindRuntimeType();` results in schema with `value: [Any!]` instead of `value: Any`. The resulting schema is invalid...

Found a solution that works for me. In your Startup add: `services.AddGraphQLServer().AddType(new AnyType())` Then in your model add this: ``` [GraphQLType("Any")] public IDictionary Value { get; set; } ``` It's...