Exemple #1
0
        public void Configure(IApplicationBuilder app, IHostingEnvironment env, PotionDbContext dbContext)
        {
            app.UseGraphQL <PotionsSchema>();
            app.UseGraphQLPlayground(new GraphQLPlaygroundOptions());

            dbContext.Seed();
        }
Exemple #2
0
 public PotionRepository(PotionDbContext dbContext)
 {
     _dbContext = dbContext;
 }