// This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, BookDbContext bookDbContext) { app.UseGraphQL <BookSchema>(); app.UseGraphQLPlayground(new GraphQLPlaygroundOptions()); bookDbContext.Seed(); }