graphql-dotnet
graphql-dotnet copied to clipboard
GraphQL for .NET
Depends on: - #4011 Demonstrates how `[GraphQLInterface]` (named here as `[Interface]`) could be implemented by a user or added directly to GraphQL.NET. ## Discussion _Originally posted by @gao-artur in https://github.com/graphql-dotnet/graphql-dotnet/pull/4008#discussion_r1713404657_:...
Now only _ObjectTypeExtension_ is supported. See `SchemaBuilder` and http://spec.graphql.org/October2021/#TypeExtension

Fixes queries such as these: ```graphql query heroQuery($id: Int!) { ...fragment1 ...fragment2 } fragment fragment1 on Query { hero(id: $id) { id } } fragment fragment2 on Query { hero(id:...
Bumps [express](https://github.com/expressjs/express) from 4.19.2 to 4.21.0. Release notes Sourced from express's releases. 4.21.0 What's Changed Deprecate "back" magic string in redirects by @blakeembrey in expressjs/express#5935 [email protected] by @wesleytodd in expressjs/express#5954...
Changed in https://github.com/graphql-dotnet/graphql-dotnet/pull/3761 ; I can't remember why. We can consider reverting behavior, or altering behavior so that `SchemaTypes` inspects all types a second time to ensure that `ResolvedType` is...
The old Facebook reference now links to: https://github.com/graphql/graphql-spec, meaning this is now hosted directly by GraphQL and no longer makes mention of Facebook.
Hello. What is the recommended way to address alias overloading issue with Graphql-dotnet ?
Bumps [tar-fs](https://github.com/mafintosh/tar-fs) from 2.1.1 to 2.1.3. Commits See full diff in compare view [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...
Workaround: ```cs /// /// Install [RemoveAsync] globally /// static Startup() { GraphQL.GlobalSwitches.GlobalAttributes.Add(new RemoveAsyncAttribute()); } /// /// Removes the Async suffix from IAsyncEnumerable type-first methods /// public class RemoveAsyncAttribute : GraphQLAttribute...