A task management api where you can Add, Update, Read and Delete tasks.
- GraphQL
- Rest
- To get started, clone the project.
git clone https://github.com/WaadSulaiman/Todo.Api.git
- Change the
ConnectionString
insideData/Configurations/Settings/AppSettings.cs
. - Do a migration to get the database up and ready.
dotnet ef migrations add InitialMigration --project Data --startup-project Rest
dotnet ef database update --project Data --startup-project Rest
- Run.
- GraphQL =>
https://localhost:port/graphql/
- Voyager =>
https://localhost:port/graphql-voyager
- Rest =>
https://localhost:port/swagger/index.html
Enjoy 👍.