Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arturmareknowak/grpcgraphqlwebsockets
Implementation of REST, gRPC, WebSockets and GraphQL endpoints within one container
https://github.com/arturmareknowak/grpcgraphqlwebsockets
docker graphql grpc hotchocolate rest signalr sqlite swagger
Last synced: 13 days ago
JSON representation
Implementation of REST, gRPC, WebSockets and GraphQL endpoints within one container
- Host: GitHub
- URL: https://github.com/arturmareknowak/grpcgraphqlwebsockets
- Owner: ArturMarekNowak
- License: mit
- Created: 2022-03-19T20:56:23.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-02-26T10:10:41.000Z (9 months ago)
- Last Synced: 2024-02-26T21:24:01.157Z (9 months ago)
- Topics: docker, graphql, grpc, hotchocolate, rest, signalr, sqlite, swagger
- Language: C#
- Homepage:
- Size: 169 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gRPC GraphQL WebSockets
![Build](https://github.com/ArturMarekNowak/gRPCGraphQLWebSockets/actions/workflows/workflow.yml/badge.svg) ![Trivy and Dockle](https://github.com/ArturMarekNowak/gRPCGraphQLWebSockets/actions/workflows/docker-image.yml/badge.svg) [![CodeFactor](https://www.codefactor.io/repository/github/arturmareknowak/grpcgraphqlwebsockets/badge/master)](https://www.codefactor.io/repository/github/arturmareknowak/grpcgraphqlwebsockets/overview/master)
The objective of this project is to make a toy example of REST API, gRPC, GraphQL and Websockets all accessing and realizing the same objective: retrieving and sending a simple message to the same database.
## Table of contents
* [General info](#general-info)
* [Screenshots](#screenshots)
* [Technologies](#technologies)
* [Setup](#setup)
* [Features](#features)
* [Status](#status)
* [Inspiration](#inspiration)## General info
Solution consists of two projects:1. gRPCGraphQLWebSockets.csproj - this project contains database along with REST API, gRPC, GraphQL and SignalR server
2. Second item - this project contains SignalR clientAfter project is build and run the four API's can be accessed via given URL's:
- http://localhost:5000/swagger/index.html - under this URL well-know Swagger documentation documents REST and gRPC endpoints:
- http://localhost:5000/rest
- http://localhost:5000/grpc
- http://localhost:5000/graphql - under this URL the Banana Cake Pop tool can be accessed which allows to test GraphQL with ease
- http://localhost:5000/signalr - under this URL the SignalR server operates. Unfortunately no "built-in" tool is implementated to test it. Hence I made a simple SignalR client. But I hope that it changes soon and the SignalR endpoints would be accessible from SwaggerUI.For container the origin is: http://localhost:8080/
Solution structure is as following:
.
└──src
├── GrpcGraphQlWebSockets # Server application for REST, GraphQL, SignalR and gRPC
│ ├── Database # Directory where database context is stored along with SQLite database itself
│ ├── google # This directory contains .proto files required to run gRPC, placed in here beacuse otherwise it won't work
│ ├── GraphQl # GraphQL mutations, queries and models are stored in here
│ ├── Grpc # gRPC service.cs and service.proto files are stored in here
│ ├── Rest # REST controller, service and model
│ ├── SignalR # SignalR server hub is stored in here
│ └── SharedModel # Models the same throughout the whole solution
│
└── SignalRClient # Simple SignalR client console application - one file and one .csproj
└── ...## Screenshots
### SignalR
You can see messages incoming from gRPC and REST being broadcasted to SignalR client as I wanted to be. They are with timestamp. You can also see message sent from SignalR client upon which Id was returned as indication of succesfull message sending.
![SignalR](https://i.imgur.com/2jX7WWi.gif)
### gRPC
gRPC response in swagger.
![gRPC](https://i.imgur.com/rCKMYax.png)
### GraphQL
GraphQL example.
![GraphQL](https://imgur.com/1sUrFhg.gif)
## Technologies
* REST API
* gRPC
* GraphQL
* SignalR
* SQLite
* Docker## Setup
If you have .NET8 and Visual Studio or JetBrains Rider just open .sln file and try to run the project.## Code
Code itself i nothing ordinary in my opinion. Just a lot of dependency injection and it works as I wanted. Few things are worth noticing:- GraphqlQL is so super cool, super powerful and super easy to code :D
- However GraphQL required me to use method injection which is sad beacuse I really like constructor injection :c Reference: https://chillicream.com/docs/hotchocolate/integrations/entity-framework
- I have used a really UGLY naming convention where classes names start with API name for example: RESTNewMessage, gRPCMessage and so on. It is ugly but I neeeded to differentiate objects in project and wanted sustain object "descriptivity".## Features
REST, SignalR, GraphQL and gRPC - all in one :D## To-do list:
All is done :D## Status
Project is: _finished_thoughts
I have heard a lot about how cool GraphQL and gRPC are so I have decided to make one toy example and encapsulate it in the same project with REST and SignalR in orderd to get the best possible comparison and visualization.Since Microsoft documentation on gRPC+Swagger is realy "so so" these two guys were my inspiration in this case:
https://github.com/grpc/grpc-dotnet/issues/167#issuecomment-830776140
https://github.com/bernardbr/dotnetgrpcrest
https://github.com/fl0wm0ti0n/GrpcWithHttpApiSwaggerAndDocker_Test