All Projects → wis → Asp.net Core Graphql Middleware

wis / Asp.net Core Graphql Middleware

Licence: mit
ASP.Net Core GraphQL Middleware

Projects that are alternatives of or similar to Asp.net Core Graphql Middleware

Stuntman
Library for impersonating users during development leveraging ASP.NET Identity.
Stars: ✭ 285 (+650%)
Mutual labels:  middleware, asp
Persistgraphql
A build tool for GraphQL projects.
Stars: ✭ 409 (+976.32%)
Mutual labels:  graphql, middleware
Mix.core
🚀 Mixcore CMS is an open source CMS that support both headless and decoupled to easily build any kinds of app/web app/customisable APIs built on top of ASP.NET Core / Dotnet Core. It is a completely open source ASP.NET Core (Dotnet Core) CMS solution. https://mixcore.org
Stars: ✭ 304 (+700%)
Mutual labels:  asp, dotnet-core
Dapper.graphql
A .NET Core library designed to integrate the Dapper and graphql-dotnet projects with ease-of-use in mind and performance as the primary concern.
Stars: ✭ 244 (+542.11%)
Mutual labels:  graphql, dotnet-core
Blogifier
Blogifier is an open-source publishing platform built with .NET Core 5.0 and the latest technologies.
Stars: ✭ 794 (+1989.47%)
Mutual labels:  asp, dotnet-core
ASPNETcoreAngularJWT
Angular in ASP.NET Core with JWT solution by systemjs
Stars: ✭ 48 (+26.32%)
Mutual labels:  middleware, asp
Framework
.NET Core Extensions and Helper NuGet packages.
Stars: ✭ 399 (+950%)
Mutual labels:  graphql, dotnet-core
Graphiql Dotnet
GraphiQL middleware for ASP.NET Core
Stars: ✭ 138 (+263.16%)
Mutual labels:  graphql, dotnet-core
Ocelot
.NET core API Gateway
Stars: ✭ 6,675 (+17465.79%)
Mutual labels:  middleware, dotnet-core
Starwars
GraphQL 'Star Wars' example using GraphQL for .NET, ASP.NET Core, Entity Framework Core
Stars: ✭ 559 (+1371.05%)
Mutual labels:  graphql, dotnet-core
Templates
.NET project templates with batteries included, providing the minimum amount of code required to get you going faster.
Stars: ✭ 2,864 (+7436.84%)
Mutual labels:  graphql, dotnet-core
Eschool
eSchool Microservice based Solution
Stars: ✭ 29 (-23.68%)
Mutual labels:  graphql, dotnet-core
Hotchocolate
Welcome to the home of the Hot Chocolate GraphQL server for .NET, the Strawberry Shake GraphQL client for .NET and Banana Cake Pop the awesome Monaco based GraphQL IDE.
Stars: ✭ 3,009 (+7818.42%)
Mutual labels:  graphql, dotnet-core
Dotnet Fake Json Server
Fake JSON Server is a Fake REST API that can be used as a Back End for prototyping or as a template for a CRUD Back End.
Stars: ✭ 265 (+597.37%)
Mutual labels:  graphql, dotnet-core
Practical Dapr
A full-stack .NET microservices build on Dapr and Tye
Stars: ✭ 140 (+268.42%)
Mutual labels:  graphql, dotnet-core
Websocket Manager
Real-Time library for ASP .NET Core
Stars: ✭ 400 (+952.63%)
Mutual labels:  middleware, dotnet-core
Graphql Serverless
GraphQL (incl. a GraphiQL interface) middleware for the webfunc serverless web framework.
Stars: ✭ 124 (+226.32%)
Mutual labels:  graphql, middleware
Graphbrainz
A fully-featured GraphQL interface for the MusicBrainz API.
Stars: ✭ 130 (+242.11%)
Mutual labels:  graphql, middleware
Graphql Dotnet
GraphQL for .NET
Stars: ✭ 5,031 (+13139.47%)
Mutual labels:  graphql, dotnet-core
Carter
Carter is framework that is a thin layer of extension methods and functionality over ASP.NET Core allowing code to be more explicit and most importantly more enjoyable.
Stars: ✭ 875 (+2202.63%)
Mutual labels:  middleware, dotnet-core

ASP.Net-Core-GraphQL-Middleware

ASP.Net Core GraphQL Middleware

usage: in your Startup.cs in the Configure() Method

app.UseGraphQL(new GraphQLOptions
{
    GraphQLPath = "/graphql" ,
    Schema = new Schema { Query = new StarWarsQuery() }
});

app.UseGraphiQL(new GraphiQLOptions()
{
    GraphiQLPath = "/graphiql"
});

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].