GraphQL bugfix + query samples

This commit is contained in:
Boris Milašinović
2026-05-12 20:41:06 +02:00
parent 3f2e199ec4
commit 3e0fc96c0e
5 changed files with 491 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
using Events.EF.Data.MSSQL;
using Events.EF.Data.Postgres;
using Events.EF.Models;
namespace GraphQLServer.SetupGraphQL;

View File

@@ -1,4 +1,4 @@
using Events.EF.Data.MSSQL;
using Events.EF.Data.Postgres;
using Events.EF.Models;
using Microsoft.EntityFrameworkCore;

View File

@@ -6,7 +6,7 @@
}
},
"ConnectionStrings": {
"EventsMssql": "Data Source=.,1433;Initial Catalog=Events;User Id=sport;Password=go and look in the secrets file;TrustServerCertificate=True"
"EventsPostgres": "Data Source=.,1433;Initial Catalog=Events;User Id=sport;Password=go and look in the secrets file;TrustServerCertificate=True"
},
"AllowedHosts": "*"
}