https://github.com/ademcatamak/blogger
PoC for GraphQL
https://github.com/ademcatamak/blogger
fetch graphql graphql-api graphql-dotnet graphql-server rest-api sql-server
Last synced: 2 months ago
JSON representation
PoC for GraphQL
- Host: GitHub
- URL: https://github.com/ademcatamak/blogger
- Owner: AdemCatamak
- Created: 2021-07-25T19:15:04.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2025-04-27T23:36:38.000Z (about 1 year ago)
- Last Synced: 2025-09-13T14:56:28.496Z (10 months ago)
- Topics: fetch, graphql, graphql-api, graphql-dotnet, graphql-server, rest-api, sql-server
- Language: C#
- Homepage:
- Size: 149 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: ReadMe.md
Awesome Lists containing this project
README
# Blogger
This project was created as an example to demonstrate the use of GraphQL.
You can find the related article on Medium via [this link](https://medium.com/@ademcatamak/what-is-graphql-2a8e554d72e6).
To run the application, make sure you have .NET 9.0 installed on your system.
If you want to run it locally, you can use the provided docker-compose file in the repository to set up the required SQL server.
When you run the application, you can access the GraphQL playground via port 5001.
```
{
authors(pageNumber: 1, pageSize: 2){ data{ firstName lastName } }
}
```
