public void Configure(IApplicationBuilder app, CarsDbContext dbContext) { app.UseGraphQL <CarsSchema>(); app.UseGraphQLPlayground(); dbContext.Seed(); }