- HotChocolate.AspNetCore
- HotChocolate.Data.EntityFramework
- Microsoft.EntityFrameworkCore
- Microsoft.EntityFrameworkCore.SqlServer
- Microsoft.EntityFrameworkCore.Tools
- Install EntityFramework tool (Install-Package Microsoft.EntityFrameworkCore.Tools)
- Add-Migration Initial
- Update-Database
query{
superheroes{
name,
description,
height,
movies {
title,
description
},
superpowers {
superPower,
description
}
}
}