├── .editorconfig ├── .gitattributes ├── .github ├── codecov.yml ├── dependabot.yml ├── labeler.yml └── workflows │ ├── build.yml │ ├── codeql-analysis.yml │ ├── format.yml │ ├── label.yml │ ├── publish.yml │ ├── test.yml │ └── wipcheck.yml ├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── Directory.Build.props ├── Directory.Build.targets ├── GraphQL.Server.sln ├── LICENSE.md ├── README.md ├── Tests.props ├── assets └── logo.64x64.png ├── docs └── migration │ ├── migration7.md │ └── migration8.md ├── global.json ├── graphql.snk ├── samples ├── Directory.Build.props ├── Samples.Authorization │ ├── Areas │ │ └── Identity │ │ │ └── Pages │ │ │ └── _ViewStart.cshtml │ ├── Data │ │ ├── ApplicationDbContext.cs │ │ └── Migrations │ │ │ ├── 00000000000000_CreateIdentitySchema.Designer.cs │ │ │ ├── 00000000000000_CreateIdentitySchema.cs │ │ │ └── ApplicationDbContextModelSnapshot.cs │ ├── Pages │ │ ├── Error.cshtml │ │ ├── Error.cshtml.cs │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ ├── Shared │ │ │ ├── _Layout.cshtml │ │ │ ├── _Layout.cshtml.css │ │ │ ├── _LoginPartial.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── Program.cs │ ├── Properties │ │ ├── launchSettings.json │ │ ├── serviceDependencies.json │ │ └── serviceDependencies.local.json │ ├── Samples.Authorization.csproj │ ├── Schema │ │ └── Query.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ │ ├── css │ │ └── site.css │ │ └── js │ │ └── site.js ├── Samples.AzureFunctions │ ├── GraphQL.cs │ ├── Properties │ │ ├── serviceDependencies.json │ │ └── serviceDependencies.local.json │ ├── Samples.AzureFunctions.csproj │ ├── Startup.cs │ └── host.json ├── Samples.Basic │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ └── Samples.Basic.csproj ├── Samples.Complex │ ├── CustomErrorInfoProvider.cs │ ├── GraphQLHttpMiddlewareWithLogs.cs │ ├── MinimumAgeRequirement.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Samples.Complex.csproj │ ├── Startup.cs │ ├── StartupWithRouting.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── Samples.Controller │ ├── Controllers │ │ └── HomeController.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ └── Samples.Controller.csproj ├── Samples.Cors │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ └── Samples.Cors.csproj ├── Samples.EndpointRouting │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ └── Samples.EndpointRouting.csproj ├── Samples.HttpResult │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ └── Samples.HttpResult.csproj ├── Samples.Jwt │ ├── Controllers │ │ └── OAuthController.cs │ ├── JwtHelper.cs │ ├── JwtWebSocketAuthenticationService.cs │ ├── Pages │ │ ├── Index.cshtml │ │ └── Index.cshtml.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Samples.Jwt.csproj │ └── SecurityKeyType.cs ├── Samples.MultipleSchemas │ ├── Cats │ │ ├── Cat.cs │ │ ├── CatsData.cs │ │ ├── CatsSchema.cs │ │ ├── Mutation.cs │ │ ├── Query.cs │ │ └── Subscription.cs │ ├── Dogs │ │ ├── Dog.cs │ │ ├── DogsData.cs │ │ ├── DogsSchema.cs │ │ ├── Mutation.cs │ │ ├── Query.cs │ │ └── Subscription.cs │ ├── Pages │ │ ├── Index.cshtml │ │ └── Index.cshtml.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ └── Samples.MultipleSchemas.csproj ├── Samples.NativeAot │ ├── GraphTypes │ │ └── QueryType.cs │ ├── MySchema.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Samples.NativeAot.csproj │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── sample-request.json │ └── sample-response.json ├── Samples.Net48 │ ├── Pages │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ └── _ViewImports.cshtml │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Samples.Net48.csproj │ ├── Startup.cs │ ├── app.config │ ├── appsettings.Development.json │ └── appsettings.json ├── Samples.Pages │ ├── Pages │ │ ├── Index.cshtml │ │ └── Index.cshtml.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ └── Samples.Pages.csproj ├── Samples.Schemas.Chat │ ├── Samples.Schemas.Chat.csproj │ ├── Schema │ │ ├── ChatSchema.cs │ │ ├── Event.cs │ │ ├── EventType.cs │ │ ├── Message.cs │ │ ├── MessageInput.cs │ │ ├── Mutation.cs │ │ ├── Query.cs │ │ └── Subscription.cs │ └── Services │ │ ├── Chat.cs │ │ └── IChat.cs └── Samples.Upload │ ├── Mutation.cs │ ├── Pages │ ├── Index.cshtml │ └── Index.cshtml.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Query.cs │ └── Samples.Upload.csproj ├── src ├── All │ └── All.csproj ├── Transports.AspNetCore │ ├── AuthorizationHelper.cs │ ├── AuthorizationParameters.cs │ ├── AuthorizationValidationRule.cs │ ├── AuthorizationVisitor.cs │ ├── AuthorizationVisitorBase.Validation.cs │ ├── AuthorizationVisitorBase.cs │ ├── Compatibility │ │ ├── DictionaryExtensions.cs │ │ ├── DynamicallyAccessedMemberTypes.cs │ │ ├── DynamicallyAccessedMembersAttribute.cs │ │ ├── HostApplicationLifetime.cs │ │ ├── IAsyncDisposable.cs │ │ ├── IsExternalInit.cs │ │ ├── NullHostApplicationLifetime.cs │ │ └── QueueExtensions.cs │ ├── Errors │ │ ├── AccessDeniedError.cs │ │ ├── BatchedRequestsNotSupportedError.cs │ │ ├── CsrfProtectionError.cs │ │ ├── FileCountExceededError.cs │ │ ├── FileSizeExceededError.cs │ │ ├── HttpMethodValidationError.cs │ │ ├── IHasPreferredStatusCode.cs │ │ ├── InvalidContentTypeError.cs │ │ ├── InvalidMapError.cs │ │ ├── JsonInvalidError.cs │ │ └── WebSocketSubProtocolNotSupportedError.cs │ ├── ExecutionResultActionResult.cs │ ├── ExecutionResultHttpResult.cs │ ├── Extensions │ │ ├── GraphQLBuilderExtensions.cs │ │ ├── GraphQLHttpApplicationBuilderExtensions.cs │ │ ├── GraphQLHttpEndpointRouteBuilderExtensions.cs │ │ ├── GraphQLHttpRequestExtensions.cs │ │ └── TaskExtensions.cs │ ├── FormFileGraphType.cs │ ├── GraphQLExecutionActionResult.cs │ ├── GraphQLExecutionHttpResult.cs │ ├── GraphQLHttpMiddleware.cs │ ├── GraphQLHttpMiddlewareOptions.cs │ ├── HttpGetValidationRule.cs │ ├── HttpPostValidationRule.cs │ ├── IAuthorizationOptions.cs │ ├── IUserContextBuilder.cs │ ├── MediaTypeAttribute.cs │ ├── SecurityHelper.cs │ ├── Transports.AspNetCore.csproj │ ├── UserContextBuilder.cs │ └── WebSockets │ │ ├── AsyncMessagePump.cs │ │ ├── BaseSubscriptionServer.Observer.cs │ │ ├── BaseSubscriptionServer.cs │ │ ├── GraphQLWebSocketOptions.cs │ │ ├── GraphQLWs │ │ ├── MessageType.cs │ │ ├── PingPayload.cs │ │ └── SubscriptionServer.cs │ │ ├── IOperationMessageProcessor.cs │ │ ├── IWebSocketAuthenticationService.cs │ │ ├── IWebSocketConnection.cs │ │ ├── KeepAliveMode.cs │ │ ├── ReusableMemoryReaderStream.cs │ │ ├── SubscriptionList.cs │ │ ├── SubscriptionsTransportWs │ │ ├── MessageType.cs │ │ └── SubscriptionServer.cs │ │ ├── WebSocketConnection.cs │ │ └── WebSocketWriterStream.cs ├── Ui.Altair │ ├── AltairActionResult.cs │ ├── AltairMiddleware.cs │ ├── AltairOptions.cs │ ├── Extensions │ │ ├── AltairApplicationBuilderExtensions.cs │ │ └── AltairEndpointRouteBuilderExtensions.cs │ ├── Internal │ │ ├── AltairPageModel.cs │ │ └── altair.cshtml │ └── Ui.Altair.csproj ├── Ui.GraphiQL │ ├── Extensions │ │ ├── GraphiQLApplicationBuilderExtensions.cs │ │ └── GraphiQLEndpointRouteBuilderExtensions.cs │ ├── GraphiQLActionResult.cs │ ├── GraphiQLMiddleware.cs │ ├── GraphiQLOptions.cs │ ├── Internal │ │ ├── GraphiQLPageModel.cs │ │ └── graphiql.cshtml │ ├── RequestCredentials.cs │ └── Ui.GraphiQL.csproj ├── Ui.Playground │ ├── Extensions │ │ ├── PlaygroundApplicationBuilderExtensions.cs │ │ └── PlaygroundEndpointRouteBuilderExtensions.cs │ ├── Internal │ │ ├── PlaygroundPageModel.cs │ │ └── playground.cshtml │ ├── PlaygroundActionResult.cs │ ├── PlaygroundMiddleware.cs │ ├── PlaygroundOptions.cs │ ├── RequestCredentials.cs │ └── Ui.Playground.csproj └── Ui.Voyager │ ├── Extensions │ ├── VoyagerApplicationBuilderExtensions.cs │ └── VoyagerEndpointRouteBuilderExtensions.cs │ ├── Internal │ ├── VoyagerPageModel.cs │ └── voyager.cshtml │ ├── RequestCredentials.cs │ ├── Ui.Voyager.csproj │ ├── VoyagerActionResult.cs │ ├── VoyagerMiddleware.cs │ └── VoyagerOptions.cs └── tests ├── ApiApprovalTests ├── ApiApprovalTests.cs ├── ApiApprovalTests.csproj ├── net50+net80+netcoreapp31 │ └── GraphQL.Server.Authorization.AspNetCore.approved.txt ├── net50 │ └── GraphQL.Server.Transports.AspNetCore.approved.txt ├── net60+net80 │ └── GraphQL.Server.Transports.AspNetCore.approved.txt ├── net80+netcoreapp31 │ ├── GraphQL.Server.Ui.Altair.approved.txt │ ├── GraphQL.Server.Ui.GraphiQL.approved.txt │ ├── GraphQL.Server.Ui.Playground.approved.txt │ └── GraphQL.Server.Ui.Voyager.approved.txt ├── netcoreapp21+netstandard20 │ ├── GraphQL.Server.Authorization.AspNetCore.approved.txt │ └── GraphQL.Server.Transports.AspNetCore.approved.txt ├── netcoreapp31 │ └── GraphQL.Server.Transports.AspNetCore.approved.txt └── netstandard20 │ ├── GraphQL.Server.Ui.Altair.approved.txt │ ├── GraphQL.Server.Ui.GraphiQL.approved.txt │ ├── GraphQL.Server.Ui.Playground.approved.txt │ └── GraphQL.Server.Ui.Voyager.approved.txt ├── Samples.Authorization.Tests ├── EndToEndTests.cs └── Samples.Authorization.Tests.csproj ├── Samples.AzureFunctions.Tests ├── EndToEndTests.cs └── Samples.AzureFunctions.Tests.csproj ├── Samples.Basic.Tests ├── EndToEndTests.cs └── Samples.Basic.Tests.csproj ├── Samples.Complex.Tests ├── BaseTest.cs ├── DITest.cs ├── RequestType.cs ├── ResponseTests.cs ├── Samples.Complex.Tests.csproj ├── Serializer.cs ├── ShouldBeExtensions.cs └── StringExtensions.cs ├── Samples.Controller.Tests ├── EndToEndTests.cs └── Samples.Controller.Tests.csproj ├── Samples.Cors.Tests ├── EndToEndTests.cs └── Samples.Cors.Tests.csproj ├── Samples.EndpointRouting.Tests ├── EndToEndTests.cs └── Samples.EndpointRouting.Tests.csproj ├── Samples.HttpResult.Tests ├── EndToEndTests.cs └── Samples.HttpResult.Tests.csproj ├── Samples.Jwt.Tests ├── EndToEndTests.cs └── Samples.Jwt.Tests.csproj ├── Samples.MultipleSchemas.Tests ├── EndToEndTests.cs └── Samples.MultipleSchemas.Tests.csproj ├── Samples.Net48.Tests ├── EndToEndTests.cs └── Samples.Net48.Tests.csproj ├── Samples.Pages.Tests ├── EndToEndTests.cs └── Samples.Pages.Tests.csproj ├── Samples.Tests ├── Samples.Tests.csproj ├── ServerTests.cs ├── TestServerExtensions.cs └── WebSocketExtensions.cs ├── Samples.Upload.Tests ├── EndToEndTests.cs └── Samples.Upload.Tests.csproj └── Transports.AspNetCore.Tests ├── AuthorizationHelperTests.cs ├── AuthorizationTests.cs ├── BuilderMethodTests.cs ├── ChatTests.cs ├── ExecutionResultActionResultTests.cs ├── ExecutionResultHttpResultTests.cs ├── FormFileGraphTypeTests.cs ├── Middleware ├── AuthorizationTests.cs ├── BatchTests.cs ├── CompressionTests.cs ├── Cors │ ├── EndpointTests.cs │ └── MiddlewareTests.cs ├── FileUploadTests.cs ├── GetTests.cs ├── MiscTests.cs ├── PostTests.cs └── WebSocketTests.cs ├── ShouldlyExtensions.cs ├── TestServerExtensions.cs ├── Transports.AspNetCore.Tests.csproj ├── UserContextBuilderTests.cs ├── WebSocketExtensions.cs └── WebSockets ├── AsyncContextTests.cs ├── AsyncMessagePumpTests.cs ├── BaseSubscriptionServerTests.cs ├── NewSubscriptionServerTests.cs ├── OldSubscriptionServerTests.cs ├── ReusableMemoryReaderStreamTests.cs ├── SubscriptionListTests.cs ├── TestBaseSubscriptionServer.cs ├── TestNewSubscriptionServer.cs ├── TestOldSubscriptionServer.cs ├── TestWebSocketConnection.cs ├── WebSocketConnectionTests.cs └── WebSocketWriterStreamTests.cs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/.github/codecov.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/.github/workflows/format.yml -------------------------------------------------------------------------------- /.github/workflows/label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/.github/workflows/label.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/wipcheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/.github/workflows/wipcheck.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /GraphQL.Server.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/GraphQL.Server.sln -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/README.md -------------------------------------------------------------------------------- /Tests.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/Tests.props -------------------------------------------------------------------------------- /assets/logo.64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/assets/logo.64x64.png -------------------------------------------------------------------------------- /docs/migration/migration7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/docs/migration/migration7.md -------------------------------------------------------------------------------- /docs/migration/migration8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/docs/migration/migration8.md -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/global.json -------------------------------------------------------------------------------- /graphql.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/graphql.snk -------------------------------------------------------------------------------- /samples/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Directory.Build.props -------------------------------------------------------------------------------- /samples/Samples.Authorization/Areas/Identity/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Authorization/Areas/Identity/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /samples/Samples.Authorization/Data/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Authorization/Data/ApplicationDbContext.cs -------------------------------------------------------------------------------- /samples/Samples.Authorization/Data/Migrations/00000000000000_CreateIdentitySchema.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Authorization/Data/Migrations/00000000000000_CreateIdentitySchema.Designer.cs -------------------------------------------------------------------------------- /samples/Samples.Authorization/Data/Migrations/00000000000000_CreateIdentitySchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Authorization/Data/Migrations/00000000000000_CreateIdentitySchema.cs -------------------------------------------------------------------------------- /samples/Samples.Authorization/Data/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Authorization/Data/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /samples/Samples.Authorization/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Authorization/Pages/Error.cshtml -------------------------------------------------------------------------------- /samples/Samples.Authorization/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Authorization/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /samples/Samples.Authorization/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Authorization/Pages/Index.cshtml -------------------------------------------------------------------------------- /samples/Samples.Authorization/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Authorization/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /samples/Samples.Authorization/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Authorization/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /samples/Samples.Authorization/Pages/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Authorization/Pages/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /samples/Samples.Authorization/Pages/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Authorization/Pages/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /samples/Samples.Authorization/Pages/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Authorization/Pages/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /samples/Samples.Authorization/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Authorization/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /samples/Samples.Authorization/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Authorization/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /samples/Samples.Authorization/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Authorization/Program.cs -------------------------------------------------------------------------------- /samples/Samples.Authorization/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Authorization/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/Samples.Authorization/Properties/serviceDependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Authorization/Properties/serviceDependencies.json -------------------------------------------------------------------------------- /samples/Samples.Authorization/Properties/serviceDependencies.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Authorization/Properties/serviceDependencies.local.json -------------------------------------------------------------------------------- /samples/Samples.Authorization/Samples.Authorization.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Authorization/Samples.Authorization.csproj -------------------------------------------------------------------------------- /samples/Samples.Authorization/Schema/Query.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Authorization/Schema/Query.cs -------------------------------------------------------------------------------- /samples/Samples.Authorization/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Authorization/appsettings.Development.json -------------------------------------------------------------------------------- /samples/Samples.Authorization/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Authorization/appsettings.json -------------------------------------------------------------------------------- /samples/Samples.Authorization/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Authorization/wwwroot/css/site.css -------------------------------------------------------------------------------- /samples/Samples.Authorization/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Authorization/wwwroot/js/site.js -------------------------------------------------------------------------------- /samples/Samples.AzureFunctions/GraphQL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.AzureFunctions/GraphQL.cs -------------------------------------------------------------------------------- /samples/Samples.AzureFunctions/Properties/serviceDependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.AzureFunctions/Properties/serviceDependencies.json -------------------------------------------------------------------------------- /samples/Samples.AzureFunctions/Properties/serviceDependencies.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.AzureFunctions/Properties/serviceDependencies.local.json -------------------------------------------------------------------------------- /samples/Samples.AzureFunctions/Samples.AzureFunctions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.AzureFunctions/Samples.AzureFunctions.csproj -------------------------------------------------------------------------------- /samples/Samples.AzureFunctions/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.AzureFunctions/Startup.cs -------------------------------------------------------------------------------- /samples/Samples.AzureFunctions/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.AzureFunctions/host.json -------------------------------------------------------------------------------- /samples/Samples.Basic/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Basic/Program.cs -------------------------------------------------------------------------------- /samples/Samples.Basic/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Basic/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/Samples.Basic/Samples.Basic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Basic/Samples.Basic.csproj -------------------------------------------------------------------------------- /samples/Samples.Complex/CustomErrorInfoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Complex/CustomErrorInfoProvider.cs -------------------------------------------------------------------------------- /samples/Samples.Complex/GraphQLHttpMiddlewareWithLogs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Complex/GraphQLHttpMiddlewareWithLogs.cs -------------------------------------------------------------------------------- /samples/Samples.Complex/MinimumAgeRequirement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Complex/MinimumAgeRequirement.cs -------------------------------------------------------------------------------- /samples/Samples.Complex/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Complex/Program.cs -------------------------------------------------------------------------------- /samples/Samples.Complex/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Complex/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/Samples.Complex/Samples.Complex.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Complex/Samples.Complex.csproj -------------------------------------------------------------------------------- /samples/Samples.Complex/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Complex/Startup.cs -------------------------------------------------------------------------------- /samples/Samples.Complex/StartupWithRouting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Complex/StartupWithRouting.cs -------------------------------------------------------------------------------- /samples/Samples.Complex/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Complex/appsettings.Development.json -------------------------------------------------------------------------------- /samples/Samples.Complex/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Complex/appsettings.json -------------------------------------------------------------------------------- /samples/Samples.Controller/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Controller/Controllers/HomeController.cs -------------------------------------------------------------------------------- /samples/Samples.Controller/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Controller/Program.cs -------------------------------------------------------------------------------- /samples/Samples.Controller/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Controller/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/Samples.Controller/Samples.Controller.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Controller/Samples.Controller.csproj -------------------------------------------------------------------------------- /samples/Samples.Cors/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Cors/Program.cs -------------------------------------------------------------------------------- /samples/Samples.Cors/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Cors/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/Samples.Cors/Samples.Cors.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Cors/Samples.Cors.csproj -------------------------------------------------------------------------------- /samples/Samples.EndpointRouting/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.EndpointRouting/Program.cs -------------------------------------------------------------------------------- /samples/Samples.EndpointRouting/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.EndpointRouting/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/Samples.EndpointRouting/Samples.EndpointRouting.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.EndpointRouting/Samples.EndpointRouting.csproj -------------------------------------------------------------------------------- /samples/Samples.HttpResult/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.HttpResult/Program.cs -------------------------------------------------------------------------------- /samples/Samples.HttpResult/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.HttpResult/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/Samples.HttpResult/Samples.HttpResult.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.HttpResult/Samples.HttpResult.csproj -------------------------------------------------------------------------------- /samples/Samples.Jwt/Controllers/OAuthController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Jwt/Controllers/OAuthController.cs -------------------------------------------------------------------------------- /samples/Samples.Jwt/JwtHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Jwt/JwtHelper.cs -------------------------------------------------------------------------------- /samples/Samples.Jwt/JwtWebSocketAuthenticationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Jwt/JwtWebSocketAuthenticationService.cs -------------------------------------------------------------------------------- /samples/Samples.Jwt/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Jwt/Pages/Index.cshtml -------------------------------------------------------------------------------- /samples/Samples.Jwt/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Jwt/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /samples/Samples.Jwt/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Jwt/Program.cs -------------------------------------------------------------------------------- /samples/Samples.Jwt/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Jwt/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/Samples.Jwt/Samples.Jwt.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Jwt/Samples.Jwt.csproj -------------------------------------------------------------------------------- /samples/Samples.Jwt/SecurityKeyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Jwt/SecurityKeyType.cs -------------------------------------------------------------------------------- /samples/Samples.MultipleSchemas/Cats/Cat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.MultipleSchemas/Cats/Cat.cs -------------------------------------------------------------------------------- /samples/Samples.MultipleSchemas/Cats/CatsData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.MultipleSchemas/Cats/CatsData.cs -------------------------------------------------------------------------------- /samples/Samples.MultipleSchemas/Cats/CatsSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.MultipleSchemas/Cats/CatsSchema.cs -------------------------------------------------------------------------------- /samples/Samples.MultipleSchemas/Cats/Mutation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.MultipleSchemas/Cats/Mutation.cs -------------------------------------------------------------------------------- /samples/Samples.MultipleSchemas/Cats/Query.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.MultipleSchemas/Cats/Query.cs -------------------------------------------------------------------------------- /samples/Samples.MultipleSchemas/Cats/Subscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.MultipleSchemas/Cats/Subscription.cs -------------------------------------------------------------------------------- /samples/Samples.MultipleSchemas/Dogs/Dog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.MultipleSchemas/Dogs/Dog.cs -------------------------------------------------------------------------------- /samples/Samples.MultipleSchemas/Dogs/DogsData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.MultipleSchemas/Dogs/DogsData.cs -------------------------------------------------------------------------------- /samples/Samples.MultipleSchemas/Dogs/DogsSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.MultipleSchemas/Dogs/DogsSchema.cs -------------------------------------------------------------------------------- /samples/Samples.MultipleSchemas/Dogs/Mutation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.MultipleSchemas/Dogs/Mutation.cs -------------------------------------------------------------------------------- /samples/Samples.MultipleSchemas/Dogs/Query.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.MultipleSchemas/Dogs/Query.cs -------------------------------------------------------------------------------- /samples/Samples.MultipleSchemas/Dogs/Subscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.MultipleSchemas/Dogs/Subscription.cs -------------------------------------------------------------------------------- /samples/Samples.MultipleSchemas/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.MultipleSchemas/Pages/Index.cshtml -------------------------------------------------------------------------------- /samples/Samples.MultipleSchemas/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.MultipleSchemas/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /samples/Samples.MultipleSchemas/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.MultipleSchemas/Program.cs -------------------------------------------------------------------------------- /samples/Samples.MultipleSchemas/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.MultipleSchemas/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/Samples.MultipleSchemas/Samples.MultipleSchemas.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.MultipleSchemas/Samples.MultipleSchemas.csproj -------------------------------------------------------------------------------- /samples/Samples.NativeAot/GraphTypes/QueryType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.NativeAot/GraphTypes/QueryType.cs -------------------------------------------------------------------------------- /samples/Samples.NativeAot/MySchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.NativeAot/MySchema.cs -------------------------------------------------------------------------------- /samples/Samples.NativeAot/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.NativeAot/Program.cs -------------------------------------------------------------------------------- /samples/Samples.NativeAot/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.NativeAot/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/Samples.NativeAot/Samples.NativeAot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.NativeAot/Samples.NativeAot.csproj -------------------------------------------------------------------------------- /samples/Samples.NativeAot/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.NativeAot/appsettings.Development.json -------------------------------------------------------------------------------- /samples/Samples.NativeAot/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.NativeAot/appsettings.json -------------------------------------------------------------------------------- /samples/Samples.NativeAot/sample-request.json: -------------------------------------------------------------------------------- 1 | { 2 | "query": "{ hello }" 3 | } 4 | -------------------------------------------------------------------------------- /samples/Samples.NativeAot/sample-response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.NativeAot/sample-response.json -------------------------------------------------------------------------------- /samples/Samples.Net48/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Net48/Pages/Index.cshtml -------------------------------------------------------------------------------- /samples/Samples.Net48/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Net48/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /samples/Samples.Net48/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Net48/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /samples/Samples.Net48/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Net48/Program.cs -------------------------------------------------------------------------------- /samples/Samples.Net48/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Net48/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/Samples.Net48/Samples.Net48.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Net48/Samples.Net48.csproj -------------------------------------------------------------------------------- /samples/Samples.Net48/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Net48/Startup.cs -------------------------------------------------------------------------------- /samples/Samples.Net48/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Net48/app.config -------------------------------------------------------------------------------- /samples/Samples.Net48/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Net48/appsettings.Development.json -------------------------------------------------------------------------------- /samples/Samples.Net48/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Net48/appsettings.json -------------------------------------------------------------------------------- /samples/Samples.Pages/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Pages/Pages/Index.cshtml -------------------------------------------------------------------------------- /samples/Samples.Pages/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Pages/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /samples/Samples.Pages/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Pages/Program.cs -------------------------------------------------------------------------------- /samples/Samples.Pages/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Pages/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/Samples.Pages/Samples.Pages.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Pages/Samples.Pages.csproj -------------------------------------------------------------------------------- /samples/Samples.Schemas.Chat/Samples.Schemas.Chat.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Schemas.Chat/Samples.Schemas.Chat.csproj -------------------------------------------------------------------------------- /samples/Samples.Schemas.Chat/Schema/ChatSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Schemas.Chat/Schema/ChatSchema.cs -------------------------------------------------------------------------------- /samples/Samples.Schemas.Chat/Schema/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Schemas.Chat/Schema/Event.cs -------------------------------------------------------------------------------- /samples/Samples.Schemas.Chat/Schema/EventType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Schemas.Chat/Schema/EventType.cs -------------------------------------------------------------------------------- /samples/Samples.Schemas.Chat/Schema/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Schemas.Chat/Schema/Message.cs -------------------------------------------------------------------------------- /samples/Samples.Schemas.Chat/Schema/MessageInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Schemas.Chat/Schema/MessageInput.cs -------------------------------------------------------------------------------- /samples/Samples.Schemas.Chat/Schema/Mutation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Schemas.Chat/Schema/Mutation.cs -------------------------------------------------------------------------------- /samples/Samples.Schemas.Chat/Schema/Query.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Schemas.Chat/Schema/Query.cs -------------------------------------------------------------------------------- /samples/Samples.Schemas.Chat/Schema/Subscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Schemas.Chat/Schema/Subscription.cs -------------------------------------------------------------------------------- /samples/Samples.Schemas.Chat/Services/Chat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Schemas.Chat/Services/Chat.cs -------------------------------------------------------------------------------- /samples/Samples.Schemas.Chat/Services/IChat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Schemas.Chat/Services/IChat.cs -------------------------------------------------------------------------------- /samples/Samples.Upload/Mutation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Upload/Mutation.cs -------------------------------------------------------------------------------- /samples/Samples.Upload/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Upload/Pages/Index.cshtml -------------------------------------------------------------------------------- /samples/Samples.Upload/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Upload/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /samples/Samples.Upload/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Upload/Program.cs -------------------------------------------------------------------------------- /samples/Samples.Upload/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Upload/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/Samples.Upload/Query.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Upload/Query.cs -------------------------------------------------------------------------------- /samples/Samples.Upload/Samples.Upload.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/samples/Samples.Upload/Samples.Upload.csproj -------------------------------------------------------------------------------- /src/All/All.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/All/All.csproj -------------------------------------------------------------------------------- /src/Transports.AspNetCore/AuthorizationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/AuthorizationHelper.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/AuthorizationParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/AuthorizationParameters.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/AuthorizationValidationRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/AuthorizationValidationRule.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/AuthorizationVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/AuthorizationVisitor.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/AuthorizationVisitorBase.Validation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/AuthorizationVisitorBase.Validation.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/AuthorizationVisitorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/AuthorizationVisitorBase.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/Compatibility/DictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/Compatibility/DictionaryExtensions.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/Compatibility/DynamicallyAccessedMemberTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/Compatibility/DynamicallyAccessedMemberTypes.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/Compatibility/DynamicallyAccessedMembersAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/Compatibility/DynamicallyAccessedMembersAttribute.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/Compatibility/HostApplicationLifetime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/Compatibility/HostApplicationLifetime.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/Compatibility/IAsyncDisposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/Compatibility/IAsyncDisposable.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/Compatibility/IsExternalInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/Compatibility/IsExternalInit.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/Compatibility/NullHostApplicationLifetime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/Compatibility/NullHostApplicationLifetime.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/Compatibility/QueueExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/Compatibility/QueueExtensions.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/Errors/AccessDeniedError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/Errors/AccessDeniedError.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/Errors/BatchedRequestsNotSupportedError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/Errors/BatchedRequestsNotSupportedError.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/Errors/CsrfProtectionError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/Errors/CsrfProtectionError.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/Errors/FileCountExceededError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/Errors/FileCountExceededError.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/Errors/FileSizeExceededError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/Errors/FileSizeExceededError.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/Errors/HttpMethodValidationError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/Errors/HttpMethodValidationError.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/Errors/IHasPreferredStatusCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/Errors/IHasPreferredStatusCode.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/Errors/InvalidContentTypeError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/Errors/InvalidContentTypeError.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/Errors/InvalidMapError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/Errors/InvalidMapError.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/Errors/JsonInvalidError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/Errors/JsonInvalidError.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/Errors/WebSocketSubProtocolNotSupportedError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/Errors/WebSocketSubProtocolNotSupportedError.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/ExecutionResultActionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/ExecutionResultActionResult.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/ExecutionResultHttpResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/ExecutionResultHttpResult.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/Extensions/GraphQLBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/Extensions/GraphQLBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/Extensions/GraphQLHttpApplicationBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/Extensions/GraphQLHttpApplicationBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/Extensions/GraphQLHttpEndpointRouteBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/Extensions/GraphQLHttpEndpointRouteBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/Extensions/GraphQLHttpRequestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/Extensions/GraphQLHttpRequestExtensions.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/Extensions/TaskExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/Extensions/TaskExtensions.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/FormFileGraphType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/FormFileGraphType.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/GraphQLExecutionActionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/GraphQLExecutionActionResult.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/GraphQLExecutionHttpResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/GraphQLExecutionHttpResult.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/GraphQLHttpMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/GraphQLHttpMiddleware.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/GraphQLHttpMiddlewareOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/GraphQLHttpMiddlewareOptions.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/HttpGetValidationRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/HttpGetValidationRule.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/HttpPostValidationRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/HttpPostValidationRule.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/IAuthorizationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/IAuthorizationOptions.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/IUserContextBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/IUserContextBuilder.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/MediaTypeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/MediaTypeAttribute.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/SecurityHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/SecurityHelper.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/Transports.AspNetCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/Transports.AspNetCore.csproj -------------------------------------------------------------------------------- /src/Transports.AspNetCore/UserContextBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/UserContextBuilder.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/WebSockets/AsyncMessagePump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/WebSockets/AsyncMessagePump.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/WebSockets/BaseSubscriptionServer.Observer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/WebSockets/BaseSubscriptionServer.Observer.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/WebSockets/BaseSubscriptionServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/WebSockets/BaseSubscriptionServer.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/WebSockets/GraphQLWebSocketOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/WebSockets/GraphQLWebSocketOptions.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/WebSockets/GraphQLWs/MessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/WebSockets/GraphQLWs/MessageType.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/WebSockets/GraphQLWs/PingPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/WebSockets/GraphQLWs/PingPayload.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/WebSockets/GraphQLWs/SubscriptionServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/WebSockets/GraphQLWs/SubscriptionServer.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/WebSockets/IOperationMessageProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/WebSockets/IOperationMessageProcessor.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/WebSockets/IWebSocketAuthenticationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/WebSockets/IWebSocketAuthenticationService.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/WebSockets/IWebSocketConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/WebSockets/IWebSocketConnection.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/WebSockets/KeepAliveMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/WebSockets/KeepAliveMode.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/WebSockets/ReusableMemoryReaderStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/WebSockets/ReusableMemoryReaderStream.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/WebSockets/SubscriptionList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/WebSockets/SubscriptionList.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/WebSockets/SubscriptionsTransportWs/MessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/WebSockets/SubscriptionsTransportWs/MessageType.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/WebSockets/SubscriptionsTransportWs/SubscriptionServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/WebSockets/SubscriptionsTransportWs/SubscriptionServer.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/WebSockets/WebSocketConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/WebSockets/WebSocketConnection.cs -------------------------------------------------------------------------------- /src/Transports.AspNetCore/WebSockets/WebSocketWriterStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Transports.AspNetCore/WebSockets/WebSocketWriterStream.cs -------------------------------------------------------------------------------- /src/Ui.Altair/AltairActionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Ui.Altair/AltairActionResult.cs -------------------------------------------------------------------------------- /src/Ui.Altair/AltairMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Ui.Altair/AltairMiddleware.cs -------------------------------------------------------------------------------- /src/Ui.Altair/AltairOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Ui.Altair/AltairOptions.cs -------------------------------------------------------------------------------- /src/Ui.Altair/Extensions/AltairApplicationBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Ui.Altair/Extensions/AltairApplicationBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Ui.Altair/Extensions/AltairEndpointRouteBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Ui.Altair/Extensions/AltairEndpointRouteBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Ui.Altair/Internal/AltairPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Ui.Altair/Internal/AltairPageModel.cs -------------------------------------------------------------------------------- /src/Ui.Altair/Internal/altair.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Ui.Altair/Internal/altair.cshtml -------------------------------------------------------------------------------- /src/Ui.Altair/Ui.Altair.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Ui.Altair/Ui.Altair.csproj -------------------------------------------------------------------------------- /src/Ui.GraphiQL/Extensions/GraphiQLApplicationBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Ui.GraphiQL/Extensions/GraphiQLApplicationBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Ui.GraphiQL/Extensions/GraphiQLEndpointRouteBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Ui.GraphiQL/Extensions/GraphiQLEndpointRouteBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Ui.GraphiQL/GraphiQLActionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Ui.GraphiQL/GraphiQLActionResult.cs -------------------------------------------------------------------------------- /src/Ui.GraphiQL/GraphiQLMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Ui.GraphiQL/GraphiQLMiddleware.cs -------------------------------------------------------------------------------- /src/Ui.GraphiQL/GraphiQLOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Ui.GraphiQL/GraphiQLOptions.cs -------------------------------------------------------------------------------- /src/Ui.GraphiQL/Internal/GraphiQLPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Ui.GraphiQL/Internal/GraphiQLPageModel.cs -------------------------------------------------------------------------------- /src/Ui.GraphiQL/Internal/graphiql.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Ui.GraphiQL/Internal/graphiql.cshtml -------------------------------------------------------------------------------- /src/Ui.GraphiQL/RequestCredentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Ui.GraphiQL/RequestCredentials.cs -------------------------------------------------------------------------------- /src/Ui.GraphiQL/Ui.GraphiQL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Ui.GraphiQL/Ui.GraphiQL.csproj -------------------------------------------------------------------------------- /src/Ui.Playground/Extensions/PlaygroundApplicationBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Ui.Playground/Extensions/PlaygroundApplicationBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Ui.Playground/Extensions/PlaygroundEndpointRouteBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Ui.Playground/Extensions/PlaygroundEndpointRouteBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Ui.Playground/Internal/PlaygroundPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Ui.Playground/Internal/PlaygroundPageModel.cs -------------------------------------------------------------------------------- /src/Ui.Playground/Internal/playground.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Ui.Playground/Internal/playground.cshtml -------------------------------------------------------------------------------- /src/Ui.Playground/PlaygroundActionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Ui.Playground/PlaygroundActionResult.cs -------------------------------------------------------------------------------- /src/Ui.Playground/PlaygroundMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Ui.Playground/PlaygroundMiddleware.cs -------------------------------------------------------------------------------- /src/Ui.Playground/PlaygroundOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Ui.Playground/PlaygroundOptions.cs -------------------------------------------------------------------------------- /src/Ui.Playground/RequestCredentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Ui.Playground/RequestCredentials.cs -------------------------------------------------------------------------------- /src/Ui.Playground/Ui.Playground.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Ui.Playground/Ui.Playground.csproj -------------------------------------------------------------------------------- /src/Ui.Voyager/Extensions/VoyagerApplicationBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Ui.Voyager/Extensions/VoyagerApplicationBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Ui.Voyager/Extensions/VoyagerEndpointRouteBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Ui.Voyager/Extensions/VoyagerEndpointRouteBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Ui.Voyager/Internal/VoyagerPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Ui.Voyager/Internal/VoyagerPageModel.cs -------------------------------------------------------------------------------- /src/Ui.Voyager/Internal/voyager.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Ui.Voyager/Internal/voyager.cshtml -------------------------------------------------------------------------------- /src/Ui.Voyager/RequestCredentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Ui.Voyager/RequestCredentials.cs -------------------------------------------------------------------------------- /src/Ui.Voyager/Ui.Voyager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Ui.Voyager/Ui.Voyager.csproj -------------------------------------------------------------------------------- /src/Ui.Voyager/VoyagerActionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Ui.Voyager/VoyagerActionResult.cs -------------------------------------------------------------------------------- /src/Ui.Voyager/VoyagerMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Ui.Voyager/VoyagerMiddleware.cs -------------------------------------------------------------------------------- /src/Ui.Voyager/VoyagerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/src/Ui.Voyager/VoyagerOptions.cs -------------------------------------------------------------------------------- /tests/ApiApprovalTests/ApiApprovalTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/ApiApprovalTests/ApiApprovalTests.cs -------------------------------------------------------------------------------- /tests/ApiApprovalTests/ApiApprovalTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/ApiApprovalTests/ApiApprovalTests.csproj -------------------------------------------------------------------------------- /tests/ApiApprovalTests/net50+net80+netcoreapp31/GraphQL.Server.Authorization.AspNetCore.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/ApiApprovalTests/net50+net80+netcoreapp31/GraphQL.Server.Authorization.AspNetCore.approved.txt -------------------------------------------------------------------------------- /tests/ApiApprovalTests/net50/GraphQL.Server.Transports.AspNetCore.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/ApiApprovalTests/net50/GraphQL.Server.Transports.AspNetCore.approved.txt -------------------------------------------------------------------------------- /tests/ApiApprovalTests/net60+net80/GraphQL.Server.Transports.AspNetCore.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/ApiApprovalTests/net60+net80/GraphQL.Server.Transports.AspNetCore.approved.txt -------------------------------------------------------------------------------- /tests/ApiApprovalTests/net80+netcoreapp31/GraphQL.Server.Ui.Altair.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/ApiApprovalTests/net80+netcoreapp31/GraphQL.Server.Ui.Altair.approved.txt -------------------------------------------------------------------------------- /tests/ApiApprovalTests/net80+netcoreapp31/GraphQL.Server.Ui.GraphiQL.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/ApiApprovalTests/net80+netcoreapp31/GraphQL.Server.Ui.GraphiQL.approved.txt -------------------------------------------------------------------------------- /tests/ApiApprovalTests/net80+netcoreapp31/GraphQL.Server.Ui.Playground.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/ApiApprovalTests/net80+netcoreapp31/GraphQL.Server.Ui.Playground.approved.txt -------------------------------------------------------------------------------- /tests/ApiApprovalTests/net80+netcoreapp31/GraphQL.Server.Ui.Voyager.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/ApiApprovalTests/net80+netcoreapp31/GraphQL.Server.Ui.Voyager.approved.txt -------------------------------------------------------------------------------- /tests/ApiApprovalTests/netcoreapp21+netstandard20/GraphQL.Server.Authorization.AspNetCore.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/ApiApprovalTests/netcoreapp21+netstandard20/GraphQL.Server.Authorization.AspNetCore.approved.txt -------------------------------------------------------------------------------- /tests/ApiApprovalTests/netcoreapp21+netstandard20/GraphQL.Server.Transports.AspNetCore.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/ApiApprovalTests/netcoreapp21+netstandard20/GraphQL.Server.Transports.AspNetCore.approved.txt -------------------------------------------------------------------------------- /tests/ApiApprovalTests/netcoreapp31/GraphQL.Server.Transports.AspNetCore.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/ApiApprovalTests/netcoreapp31/GraphQL.Server.Transports.AspNetCore.approved.txt -------------------------------------------------------------------------------- /tests/ApiApprovalTests/netstandard20/GraphQL.Server.Ui.Altair.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/ApiApprovalTests/netstandard20/GraphQL.Server.Ui.Altair.approved.txt -------------------------------------------------------------------------------- /tests/ApiApprovalTests/netstandard20/GraphQL.Server.Ui.GraphiQL.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/ApiApprovalTests/netstandard20/GraphQL.Server.Ui.GraphiQL.approved.txt -------------------------------------------------------------------------------- /tests/ApiApprovalTests/netstandard20/GraphQL.Server.Ui.Playground.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/ApiApprovalTests/netstandard20/GraphQL.Server.Ui.Playground.approved.txt -------------------------------------------------------------------------------- /tests/ApiApprovalTests/netstandard20/GraphQL.Server.Ui.Voyager.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/ApiApprovalTests/netstandard20/GraphQL.Server.Ui.Voyager.approved.txt -------------------------------------------------------------------------------- /tests/Samples.Authorization.Tests/EndToEndTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Samples.Authorization.Tests/EndToEndTests.cs -------------------------------------------------------------------------------- /tests/Samples.Authorization.Tests/Samples.Authorization.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Samples.Authorization.Tests/Samples.Authorization.Tests.csproj -------------------------------------------------------------------------------- /tests/Samples.AzureFunctions.Tests/EndToEndTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Samples.AzureFunctions.Tests/EndToEndTests.cs -------------------------------------------------------------------------------- /tests/Samples.AzureFunctions.Tests/Samples.AzureFunctions.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Samples.AzureFunctions.Tests/Samples.AzureFunctions.Tests.csproj -------------------------------------------------------------------------------- /tests/Samples.Basic.Tests/EndToEndTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Samples.Basic.Tests/EndToEndTests.cs -------------------------------------------------------------------------------- /tests/Samples.Basic.Tests/Samples.Basic.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Samples.Basic.Tests/Samples.Basic.Tests.csproj -------------------------------------------------------------------------------- /tests/Samples.Complex.Tests/BaseTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Samples.Complex.Tests/BaseTest.cs -------------------------------------------------------------------------------- /tests/Samples.Complex.Tests/DITest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Samples.Complex.Tests/DITest.cs -------------------------------------------------------------------------------- /tests/Samples.Complex.Tests/RequestType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Samples.Complex.Tests/RequestType.cs -------------------------------------------------------------------------------- /tests/Samples.Complex.Tests/ResponseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Samples.Complex.Tests/ResponseTests.cs -------------------------------------------------------------------------------- /tests/Samples.Complex.Tests/Samples.Complex.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Samples.Complex.Tests/Samples.Complex.Tests.csproj -------------------------------------------------------------------------------- /tests/Samples.Complex.Tests/Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Samples.Complex.Tests/Serializer.cs -------------------------------------------------------------------------------- /tests/Samples.Complex.Tests/ShouldBeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Samples.Complex.Tests/ShouldBeExtensions.cs -------------------------------------------------------------------------------- /tests/Samples.Complex.Tests/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Samples.Complex.Tests/StringExtensions.cs -------------------------------------------------------------------------------- /tests/Samples.Controller.Tests/EndToEndTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Samples.Controller.Tests/EndToEndTests.cs -------------------------------------------------------------------------------- /tests/Samples.Controller.Tests/Samples.Controller.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Samples.Controller.Tests/Samples.Controller.Tests.csproj -------------------------------------------------------------------------------- /tests/Samples.Cors.Tests/EndToEndTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Samples.Cors.Tests/EndToEndTests.cs -------------------------------------------------------------------------------- /tests/Samples.Cors.Tests/Samples.Cors.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Samples.Cors.Tests/Samples.Cors.Tests.csproj -------------------------------------------------------------------------------- /tests/Samples.EndpointRouting.Tests/EndToEndTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Samples.EndpointRouting.Tests/EndToEndTests.cs -------------------------------------------------------------------------------- /tests/Samples.EndpointRouting.Tests/Samples.EndpointRouting.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Samples.EndpointRouting.Tests/Samples.EndpointRouting.Tests.csproj -------------------------------------------------------------------------------- /tests/Samples.HttpResult.Tests/EndToEndTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Samples.HttpResult.Tests/EndToEndTests.cs -------------------------------------------------------------------------------- /tests/Samples.HttpResult.Tests/Samples.HttpResult.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Samples.HttpResult.Tests/Samples.HttpResult.Tests.csproj -------------------------------------------------------------------------------- /tests/Samples.Jwt.Tests/EndToEndTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Samples.Jwt.Tests/EndToEndTests.cs -------------------------------------------------------------------------------- /tests/Samples.Jwt.Tests/Samples.Jwt.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Samples.Jwt.Tests/Samples.Jwt.Tests.csproj -------------------------------------------------------------------------------- /tests/Samples.MultipleSchemas.Tests/EndToEndTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Samples.MultipleSchemas.Tests/EndToEndTests.cs -------------------------------------------------------------------------------- /tests/Samples.MultipleSchemas.Tests/Samples.MultipleSchemas.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Samples.MultipleSchemas.Tests/Samples.MultipleSchemas.Tests.csproj -------------------------------------------------------------------------------- /tests/Samples.Net48.Tests/EndToEndTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Samples.Net48.Tests/EndToEndTests.cs -------------------------------------------------------------------------------- /tests/Samples.Net48.Tests/Samples.Net48.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Samples.Net48.Tests/Samples.Net48.Tests.csproj -------------------------------------------------------------------------------- /tests/Samples.Pages.Tests/EndToEndTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Samples.Pages.Tests/EndToEndTests.cs -------------------------------------------------------------------------------- /tests/Samples.Pages.Tests/Samples.Pages.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Samples.Pages.Tests/Samples.Pages.Tests.csproj -------------------------------------------------------------------------------- /tests/Samples.Tests/Samples.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Samples.Tests/Samples.Tests.csproj -------------------------------------------------------------------------------- /tests/Samples.Tests/ServerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Samples.Tests/ServerTests.cs -------------------------------------------------------------------------------- /tests/Samples.Tests/TestServerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Samples.Tests/TestServerExtensions.cs -------------------------------------------------------------------------------- /tests/Samples.Tests/WebSocketExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Samples.Tests/WebSocketExtensions.cs -------------------------------------------------------------------------------- /tests/Samples.Upload.Tests/EndToEndTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Samples.Upload.Tests/EndToEndTests.cs -------------------------------------------------------------------------------- /tests/Samples.Upload.Tests/Samples.Upload.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Samples.Upload.Tests/Samples.Upload.Tests.csproj -------------------------------------------------------------------------------- /tests/Transports.AspNetCore.Tests/AuthorizationHelperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Transports.AspNetCore.Tests/AuthorizationHelperTests.cs -------------------------------------------------------------------------------- /tests/Transports.AspNetCore.Tests/AuthorizationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Transports.AspNetCore.Tests/AuthorizationTests.cs -------------------------------------------------------------------------------- /tests/Transports.AspNetCore.Tests/BuilderMethodTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Transports.AspNetCore.Tests/BuilderMethodTests.cs -------------------------------------------------------------------------------- /tests/Transports.AspNetCore.Tests/ChatTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Transports.AspNetCore.Tests/ChatTests.cs -------------------------------------------------------------------------------- /tests/Transports.AspNetCore.Tests/ExecutionResultActionResultTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Transports.AspNetCore.Tests/ExecutionResultActionResultTests.cs -------------------------------------------------------------------------------- /tests/Transports.AspNetCore.Tests/ExecutionResultHttpResultTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Transports.AspNetCore.Tests/ExecutionResultHttpResultTests.cs -------------------------------------------------------------------------------- /tests/Transports.AspNetCore.Tests/FormFileGraphTypeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Transports.AspNetCore.Tests/FormFileGraphTypeTests.cs -------------------------------------------------------------------------------- /tests/Transports.AspNetCore.Tests/Middleware/AuthorizationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Transports.AspNetCore.Tests/Middleware/AuthorizationTests.cs -------------------------------------------------------------------------------- /tests/Transports.AspNetCore.Tests/Middleware/BatchTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Transports.AspNetCore.Tests/Middleware/BatchTests.cs -------------------------------------------------------------------------------- /tests/Transports.AspNetCore.Tests/Middleware/CompressionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Transports.AspNetCore.Tests/Middleware/CompressionTests.cs -------------------------------------------------------------------------------- /tests/Transports.AspNetCore.Tests/Middleware/Cors/EndpointTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Transports.AspNetCore.Tests/Middleware/Cors/EndpointTests.cs -------------------------------------------------------------------------------- /tests/Transports.AspNetCore.Tests/Middleware/Cors/MiddlewareTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Transports.AspNetCore.Tests/Middleware/Cors/MiddlewareTests.cs -------------------------------------------------------------------------------- /tests/Transports.AspNetCore.Tests/Middleware/FileUploadTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Transports.AspNetCore.Tests/Middleware/FileUploadTests.cs -------------------------------------------------------------------------------- /tests/Transports.AspNetCore.Tests/Middleware/GetTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Transports.AspNetCore.Tests/Middleware/GetTests.cs -------------------------------------------------------------------------------- /tests/Transports.AspNetCore.Tests/Middleware/MiscTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Transports.AspNetCore.Tests/Middleware/MiscTests.cs -------------------------------------------------------------------------------- /tests/Transports.AspNetCore.Tests/Middleware/PostTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Transports.AspNetCore.Tests/Middleware/PostTests.cs -------------------------------------------------------------------------------- /tests/Transports.AspNetCore.Tests/Middleware/WebSocketTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Transports.AspNetCore.Tests/Middleware/WebSocketTests.cs -------------------------------------------------------------------------------- /tests/Transports.AspNetCore.Tests/ShouldlyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Transports.AspNetCore.Tests/ShouldlyExtensions.cs -------------------------------------------------------------------------------- /tests/Transports.AspNetCore.Tests/TestServerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Transports.AspNetCore.Tests/TestServerExtensions.cs -------------------------------------------------------------------------------- /tests/Transports.AspNetCore.Tests/Transports.AspNetCore.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Transports.AspNetCore.Tests/Transports.AspNetCore.Tests.csproj -------------------------------------------------------------------------------- /tests/Transports.AspNetCore.Tests/UserContextBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Transports.AspNetCore.Tests/UserContextBuilderTests.cs -------------------------------------------------------------------------------- /tests/Transports.AspNetCore.Tests/WebSocketExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Transports.AspNetCore.Tests/WebSocketExtensions.cs -------------------------------------------------------------------------------- /tests/Transports.AspNetCore.Tests/WebSockets/AsyncContextTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Transports.AspNetCore.Tests/WebSockets/AsyncContextTests.cs -------------------------------------------------------------------------------- /tests/Transports.AspNetCore.Tests/WebSockets/AsyncMessagePumpTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Transports.AspNetCore.Tests/WebSockets/AsyncMessagePumpTests.cs -------------------------------------------------------------------------------- /tests/Transports.AspNetCore.Tests/WebSockets/BaseSubscriptionServerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Transports.AspNetCore.Tests/WebSockets/BaseSubscriptionServerTests.cs -------------------------------------------------------------------------------- /tests/Transports.AspNetCore.Tests/WebSockets/NewSubscriptionServerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Transports.AspNetCore.Tests/WebSockets/NewSubscriptionServerTests.cs -------------------------------------------------------------------------------- /tests/Transports.AspNetCore.Tests/WebSockets/OldSubscriptionServerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Transports.AspNetCore.Tests/WebSockets/OldSubscriptionServerTests.cs -------------------------------------------------------------------------------- /tests/Transports.AspNetCore.Tests/WebSockets/ReusableMemoryReaderStreamTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Transports.AspNetCore.Tests/WebSockets/ReusableMemoryReaderStreamTests.cs -------------------------------------------------------------------------------- /tests/Transports.AspNetCore.Tests/WebSockets/SubscriptionListTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Transports.AspNetCore.Tests/WebSockets/SubscriptionListTests.cs -------------------------------------------------------------------------------- /tests/Transports.AspNetCore.Tests/WebSockets/TestBaseSubscriptionServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Transports.AspNetCore.Tests/WebSockets/TestBaseSubscriptionServer.cs -------------------------------------------------------------------------------- /tests/Transports.AspNetCore.Tests/WebSockets/TestNewSubscriptionServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Transports.AspNetCore.Tests/WebSockets/TestNewSubscriptionServer.cs -------------------------------------------------------------------------------- /tests/Transports.AspNetCore.Tests/WebSockets/TestOldSubscriptionServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Transports.AspNetCore.Tests/WebSockets/TestOldSubscriptionServer.cs -------------------------------------------------------------------------------- /tests/Transports.AspNetCore.Tests/WebSockets/TestWebSocketConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Transports.AspNetCore.Tests/WebSockets/TestWebSocketConnection.cs -------------------------------------------------------------------------------- /tests/Transports.AspNetCore.Tests/WebSockets/WebSocketConnectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Transports.AspNetCore.Tests/WebSockets/WebSocketConnectionTests.cs -------------------------------------------------------------------------------- /tests/Transports.AspNetCore.Tests/WebSockets/WebSocketWriterStreamTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-dotnet/server/HEAD/tests/Transports.AspNetCore.Tests/WebSockets/WebSocketWriterStreamTests.cs --------------------------------------------------------------------------------