An open API service indexing awesome lists of open source software.

https://github.com/jodendaal/graphql.sql

Generate a GraphQL API from your SQL database in minutes.
https://github.com/jodendaal/graphql.sql

dotnet dotnet-core graphql sql

Last synced: 6 months ago
JSON representation

Generate a GraphQL API from your SQL database in minutes.

Awesome Lists containing this project

README

          

# GraphQL.SQL for .NET
[![.NET](https://github.com/jodendaal/GraphQL.SQL/actions/workflows/dotnet-desktop.yml/badge.svg?branch=main)](https://github.com/jodendaal/GraphQL.SQL/actions/workflows/dotnet-desktop.yml)
# Beta Version - See example app for documentation for now.

Generate a GraphQL API from your SQL database in minutes.

## Features
- [x] Lightning fast and light weight
- [x] Generates GraphQL Types from database Schema
- [x] Generates Queries and Insert, Update and Delete Mutations
- [x] Advanced Set querying logic
- [x] Where conditions
- [x] Order by
- [x] One-To-Many joins
- [x] Many-To-Many joins
- [x] Paging
- [x] Connections
- [ ] Support for more databases
- [ ] Documentation

## Container Registration

Use extension method to quickly add the required services to [IServiceCollection](https://docs.microsoft.com/en-us/dotnet/api/microsoft.extensions.dependencyinjection.iservicecollection):


```cs
services.UseGraphQL(_connectionString);
```