graphql-dotnet icon indicating copy to clipboard operation
graphql-dotnet copied to clipboard

GraphQL for .NET

Results 225 graphql-dotnet issues
Sort by recently updated
recently updated
newest added

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

spec compliance

![изображение](https://user-images.githubusercontent.com/21261007/147353176-a8eae207-9a17-4826-9ead-2afa92e9ae47.png)

BREAKING

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...

dependencies
javascript

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 [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tar-fs&package-manager=npm_and_yarn&previous-version=2.1.1&new-version=2.1.3)](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...

dependencies
javascript

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...