Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated the workshop to .NET 8 and Hot Chocolate 14 #112

Draft
wants to merge 45 commits into
base: master
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
b150b9c
Updated the workshop to .NET 8 and Hot Chocolate 14
glen-84 Aug 8, 2024
bcca937
Added session 3
glen-84 Aug 13, 2024
a2eccd9
Added session 4
glen-84 Aug 15, 2024
0d519af
Added session 5
glen-84 Aug 16, 2024
49a173b
Added session 6
glen-84 Aug 19, 2024
64f0813
Added session 7
glen-84 Aug 19, 2024
142e478
Added session 8
glen-84 Aug 20, 2024
8fa9b4c
Removed session 2
glen-84 Aug 20, 2024
c99011e
Removed first item in ToCs
glen-84 Aug 20, 2024
361fa3c
Removed unused images
glen-84 Aug 20, 2024
cf9f1f5
Removed `complete` directory
glen-84 Aug 20, 2024
6962c72
Made most properties init-only
glen-84 Aug 20, 2024
844e8af
Updated dependencies
glen-84 Aug 20, 2024
ed415c1
Updated dependencies
glen-84 Aug 22, 2024
be55922
Updated schema snapshot
glen-84 Aug 23, 2024
69946db
Removed trackByName/tracksByName
glen-84 Aug 23, 2024
4ece459
Updated screenshots
glen-84 Aug 23, 2024
9c5e643
Removed unused using directives
glen-84 Aug 23, 2024
9920057
Updated diagrams
glen-84 Aug 23, 2024
69e0ee8
Updated dependencies
glen-84 Aug 23, 2024
5829212
Switched to using the [BindMember] attribute
glen-84 Aug 23, 2024
ae04d23
Added solution that includes all projects
glen-84 Sep 9, 2024
f425ecb
Optimized DataLoaders
glen-84 Sep 9, 2024
042609f
Used DataLoader interfaces
glen-84 Sep 9, 2024
f274fc6
Added AsNoTracking
glen-84 Sep 9, 2024
10898f8
Updated dependencies
glen-84 Sep 9, 2024
a645caf
Restructured session 1 to ensure that the AddGraphQLTypes method exists
glen-84 Sep 20, 2024
cf33147
Updated dependencies
glen-84 Sep 23, 2024
0b1806f
Updated dependencies
glen-84 Sep 25, 2024
331c158
Added typeName argument for track ID
glen-84 Sep 25, 2024
394c2e8
Updated schema snapshot
glen-84 Sep 25, 2024
fc1177c
Added keyset and DataLoader pagination
glen-84 Sep 25, 2024
8f346a7
Updated dependencies
glen-84 Sep 30, 2024
5af7655
Used the generic version of the ID descriptor method
glen-84 Sep 30, 2024
ba587cb
Updated dependencies
glen-84 Oct 4, 2024
0232888
Fix mismatched curly brackets in 3-schema-design.md SessionDataLoader…
pwernicke Oct 8, 2024
955d2c5
Updated dependencies
glen-84 Oct 9, 2024
b86114e
Fixed grammatical error
glen-84 Oct 9, 2024
3842b9b
Corrected link
glen-84 Oct 9, 2024
594e15a
Renamed Banana Cake Pop to Nitro
glen-84 Oct 9, 2024
509dcfc
Added DataLoader projections (#115)
glen-84 Oct 14, 2024
8d3083b
Updated dependencies
glen-84 Oct 17, 2024
a22f2f3
Updated dependencies
glen-84 Nov 12, 2024
c88d828
Updated dependencies
glen-84 Dec 10, 2024
37956fb
Updated dependencies
glen-84 Feb 11, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Updated dependencies
glen-84 committed Oct 17, 2024
commit 8d3083bc671c175c9246691eef6f134c5ce6dc7b
6 changes: 3 additions & 3 deletions code/session-1/GraphQL/GraphQL.csproj
Original file line number Diff line number Diff line change
@@ -8,9 +8,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="HotChocolate.AspNetCore" Version="14.0.0-rc.3" />
<PackageReference Include="HotChocolate.AspNetCore.CommandLine" Version="14.0.0-rc.3" />
<PackageReference Include="HotChocolate.Types.Analyzers" Version="14.0.0-rc.3" />
<PackageReference Include="HotChocolate.AspNetCore" Version="14.0.0" />
<PackageReference Include="HotChocolate.AspNetCore.CommandLine" Version="14.0.0" />
<PackageReference Include="HotChocolate.Types.Analyzers" Version="14.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.10">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
2 changes: 1 addition & 1 deletion code/session-2/GraphQL/DataLoaders.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using ConferencePlanner.GraphQL.Data;
using GreenDonut.Projections;
using GreenDonut.Selectors;
using Microsoft.EntityFrameworkCore;

namespace ConferencePlanner.GraphQL;
6 changes: 3 additions & 3 deletions code/session-2/GraphQL/GraphQL.csproj
Original file line number Diff line number Diff line change
@@ -9,9 +9,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="HotChocolate.AspNetCore" Version="14.0.0-rc.3" />
<PackageReference Include="HotChocolate.AspNetCore.CommandLine" Version="14.0.0-rc.3" />
<PackageReference Include="HotChocolate.Types.Analyzers" Version="14.0.0-rc.3" />
<PackageReference Include="HotChocolate.AspNetCore" Version="14.0.0" />
<PackageReference Include="HotChocolate.AspNetCore.CommandLine" Version="14.0.0" />
<PackageReference Include="HotChocolate.Types.Analyzers" Version="14.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.10">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
2 changes: 1 addition & 1 deletion code/session-2/GraphQL/Queries.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using ConferencePlanner.GraphQL.Data;
using GreenDonut.Projections;
using GreenDonut.Selectors;
using HotChocolate.Execution.Processing;
using Microsoft.EntityFrameworkCore;

2 changes: 1 addition & 1 deletion code/session-2/GraphQL/Types/SpeakerType.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using ConferencePlanner.GraphQL.Data;
using GreenDonut.Projections;
using GreenDonut.Selectors;
using HotChocolate.Execution.Processing;

namespace ConferencePlanner.GraphQL.Types;
2 changes: 1 addition & 1 deletion code/session-3/GraphQL/Attendees/AttendeeDataLoaders.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using ConferencePlanner.GraphQL.Data;
using GreenDonut.Projections;
using GreenDonut.Selectors;
using Microsoft.EntityFrameworkCore;

namespace ConferencePlanner.GraphQL.Attendees;
2 changes: 1 addition & 1 deletion code/session-3/GraphQL/Attendees/AttendeeType.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using ConferencePlanner.GraphQL.Data;
using GreenDonut.Projections;
using GreenDonut.Selectors;
using HotChocolate.Execution.Processing;

namespace ConferencePlanner.GraphQL.Attendees;
6 changes: 3 additions & 3 deletions code/session-3/GraphQL/GraphQL.csproj
Original file line number Diff line number Diff line change
@@ -9,9 +9,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="HotChocolate.AspNetCore" Version="14.0.0-rc.3" />
<PackageReference Include="HotChocolate.AspNetCore.CommandLine" Version="14.0.0-rc.3" />
<PackageReference Include="HotChocolate.Types.Analyzers" Version="14.0.0-rc.3" />
<PackageReference Include="HotChocolate.AspNetCore" Version="14.0.0" />
<PackageReference Include="HotChocolate.AspNetCore.CommandLine" Version="14.0.0" />
<PackageReference Include="HotChocolate.Types.Analyzers" Version="14.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.10">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
2 changes: 1 addition & 1 deletion code/session-3/GraphQL/Sessions/SessionDataLoaders.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using ConferencePlanner.GraphQL.Data;
using GreenDonut.Projections;
using GreenDonut.Selectors;
using Microsoft.EntityFrameworkCore;

namespace ConferencePlanner.GraphQL.Sessions;
2 changes: 1 addition & 1 deletion code/session-3/GraphQL/Sessions/SessionQueries.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using ConferencePlanner.GraphQL.Data;
using GreenDonut.Projections;
using GreenDonut.Selectors;
using HotChocolate.Execution.Processing;
using Microsoft.EntityFrameworkCore;

2 changes: 1 addition & 1 deletion code/session-3/GraphQL/Sessions/SessionType.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using ConferencePlanner.GraphQL.Data;
using ConferencePlanner.GraphQL.Tracks;
using GreenDonut.Projections;
using GreenDonut.Selectors;
using HotChocolate.Execution.Processing;

namespace ConferencePlanner.GraphQL.Sessions;
2 changes: 1 addition & 1 deletion code/session-3/GraphQL/Speakers/SpeakerDataLoaders.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using ConferencePlanner.GraphQL.Data;
using GreenDonut.Projections;
using GreenDonut.Selectors;
using Microsoft.EntityFrameworkCore;

namespace ConferencePlanner.GraphQL.Speakers;
2 changes: 1 addition & 1 deletion code/session-3/GraphQL/Speakers/SpeakerQueries.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using ConferencePlanner.GraphQL.Data;
using GreenDonut.Projections;
using GreenDonut.Selectors;
using HotChocolate.Execution.Processing;
using Microsoft.EntityFrameworkCore;

2 changes: 1 addition & 1 deletion code/session-3/GraphQL/Speakers/SpeakerType.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using ConferencePlanner.GraphQL.Data;
using GreenDonut.Projections;
using GreenDonut.Selectors;
using HotChocolate.Execution.Processing;

namespace ConferencePlanner.GraphQL.Speakers;
2 changes: 1 addition & 1 deletion code/session-3/GraphQL/Tracks/TrackDataLoaders.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using ConferencePlanner.GraphQL.Data;
using GreenDonut.Projections;
using GreenDonut.Selectors;
using Microsoft.EntityFrameworkCore;

namespace ConferencePlanner.GraphQL.Tracks;
2 changes: 1 addition & 1 deletion code/session-3/GraphQL/Tracks/TrackQueries.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using ConferencePlanner.GraphQL.Data;
using GreenDonut.Projections;
using GreenDonut.Selectors;
using HotChocolate.Execution.Processing;
using Microsoft.EntityFrameworkCore;

2 changes: 1 addition & 1 deletion code/session-3/GraphQL/Tracks/TrackType.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using ConferencePlanner.GraphQL.Data;
using GreenDonut.Projections;
using GreenDonut.Selectors;
using HotChocolate.Execution.Processing;

namespace ConferencePlanner.GraphQL.Tracks;
2 changes: 1 addition & 1 deletion code/session-4/GraphQL/Attendees/AttendeeDataLoaders.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using ConferencePlanner.GraphQL.Data;
using GreenDonut.Projections;
using GreenDonut.Selectors;
using Microsoft.EntityFrameworkCore;

namespace ConferencePlanner.GraphQL.Attendees;
2 changes: 1 addition & 1 deletion code/session-4/GraphQL/Attendees/AttendeeType.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using ConferencePlanner.GraphQL.Data;
using GreenDonut.Projections;
using GreenDonut.Selectors;
using HotChocolate.Execution.Processing;

namespace ConferencePlanner.GraphQL.Attendees;
6 changes: 3 additions & 3 deletions code/session-4/GraphQL/GraphQL.csproj
Original file line number Diff line number Diff line change
@@ -9,9 +9,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="HotChocolate.AspNetCore" Version="14.0.0-rc.3" />
<PackageReference Include="HotChocolate.AspNetCore.CommandLine" Version="14.0.0-rc.3" />
<PackageReference Include="HotChocolate.Types.Analyzers" Version="14.0.0-rc.3" />
<PackageReference Include="HotChocolate.AspNetCore" Version="14.0.0" />
<PackageReference Include="HotChocolate.AspNetCore.CommandLine" Version="14.0.0" />
<PackageReference Include="HotChocolate.Types.Analyzers" Version="14.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.10">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
2 changes: 1 addition & 1 deletion code/session-4/GraphQL/Sessions/SessionDataLoaders.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using ConferencePlanner.GraphQL.Data;
using GreenDonut.Projections;
using GreenDonut.Selectors;
using Microsoft.EntityFrameworkCore;

namespace ConferencePlanner.GraphQL.Sessions;
2 changes: 1 addition & 1 deletion code/session-4/GraphQL/Sessions/SessionQueries.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using ConferencePlanner.GraphQL.Data;
using GreenDonut.Projections;
using GreenDonut.Selectors;
using HotChocolate.Execution.Processing;
using Microsoft.EntityFrameworkCore;

2 changes: 1 addition & 1 deletion code/session-4/GraphQL/Sessions/SessionType.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using ConferencePlanner.GraphQL.Data;
using ConferencePlanner.GraphQL.Tracks;
using GreenDonut.Projections;
using GreenDonut.Selectors;
using HotChocolate.Execution.Processing;

namespace ConferencePlanner.GraphQL.Sessions;
2 changes: 1 addition & 1 deletion code/session-4/GraphQL/Speakers/SpeakerDataLoaders.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using ConferencePlanner.GraphQL.Data;
using GreenDonut.Projections;
using GreenDonut.Selectors;
using Microsoft.EntityFrameworkCore;

namespace ConferencePlanner.GraphQL.Speakers;
2 changes: 1 addition & 1 deletion code/session-4/GraphQL/Speakers/SpeakerQueries.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using ConferencePlanner.GraphQL.Data;
using GreenDonut.Projections;
using GreenDonut.Selectors;
using HotChocolate.Execution.Processing;
using Microsoft.EntityFrameworkCore;

2 changes: 1 addition & 1 deletion code/session-4/GraphQL/Speakers/SpeakerType.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using ConferencePlanner.GraphQL.Data;
using GreenDonut.Projections;
using GreenDonut.Selectors;
using HotChocolate.Execution.Processing;

namespace ConferencePlanner.GraphQL.Speakers;
2 changes: 1 addition & 1 deletion code/session-4/GraphQL/Tracks/TrackDataLoaders.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using ConferencePlanner.GraphQL.Data;
using GreenDonut.Projections;
using GreenDonut.Selectors;
using Microsoft.EntityFrameworkCore;

namespace ConferencePlanner.GraphQL.Tracks;
2 changes: 1 addition & 1 deletion code/session-4/GraphQL/Tracks/TrackQueries.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using ConferencePlanner.GraphQL.Data;
using GreenDonut.Projections;
using GreenDonut.Selectors;
using HotChocolate.Execution.Processing;
using Microsoft.EntityFrameworkCore;

2 changes: 1 addition & 1 deletion code/session-4/GraphQL/Tracks/TrackType.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using ConferencePlanner.GraphQL.Data;
using ConferencePlanner.GraphQL.Extensions;
using GreenDonut.Projections;
using GreenDonut.Selectors;
using HotChocolate.Execution.Processing;

namespace ConferencePlanner.GraphQL.Tracks;
2 changes: 1 addition & 1 deletion code/session-5/GraphQL/Attendees/AttendeeDataLoaders.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using ConferencePlanner.GraphQL.Data;
using GreenDonut.Projections;
using GreenDonut.Selectors;
using Microsoft.EntityFrameworkCore;

namespace ConferencePlanner.GraphQL.Attendees;
2 changes: 1 addition & 1 deletion code/session-5/GraphQL/Attendees/AttendeeType.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using ConferencePlanner.GraphQL.Data;
using GreenDonut.Projections;
using GreenDonut.Selectors;
using HotChocolate.Execution.Processing;

namespace ConferencePlanner.GraphQL.Attendees;
12 changes: 6 additions & 6 deletions code/session-5/GraphQL/GraphQL.csproj
Original file line number Diff line number Diff line change
@@ -9,12 +9,12 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="HotChocolate.AspNetCore" Version="14.0.0-rc.3" />
<PackageReference Include="HotChocolate.AspNetCore.CommandLine" Version="14.0.0-rc.3" />
<PackageReference Include="HotChocolate.Data" Version="14.0.0-rc.3" />
<PackageReference Include="HotChocolate.Data.EntityFramework" Version="14.0.0-rc.3" />
<PackageReference Include="HotChocolate.Pagination.EntityFramework" Version="14.0.0-rc.3" />
<PackageReference Include="HotChocolate.Types.Analyzers" Version="14.0.0-rc.3" />
<PackageReference Include="HotChocolate.AspNetCore" Version="14.0.0" />
<PackageReference Include="HotChocolate.AspNetCore.CommandLine" Version="14.0.0" />
<PackageReference Include="HotChocolate.Data" Version="14.0.0" />
<PackageReference Include="HotChocolate.Data.EntityFramework" Version="14.0.0" />
<PackageReference Include="HotChocolate.Pagination.EntityFramework" Version="14.0.0" />
<PackageReference Include="HotChocolate.Types.Analyzers" Version="14.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.10">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
2 changes: 1 addition & 1 deletion code/session-5/GraphQL/Sessions/SessionDataLoaders.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using ConferencePlanner.GraphQL.Data;
using GreenDonut.Projections;
using GreenDonut.Selectors;
using Microsoft.EntityFrameworkCore;

namespace ConferencePlanner.GraphQL.Sessions;
2 changes: 1 addition & 1 deletion code/session-5/GraphQL/Sessions/SessionQueries.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using ConferencePlanner.GraphQL.Data;
using GreenDonut.Projections;
using GreenDonut.Selectors;
using HotChocolate.Execution.Processing;
using Microsoft.EntityFrameworkCore;

2 changes: 1 addition & 1 deletion code/session-5/GraphQL/Sessions/SessionType.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using ConferencePlanner.GraphQL.Data;
using ConferencePlanner.GraphQL.Tracks;
using GreenDonut.Projections;
using GreenDonut.Selectors;
using HotChocolate.Execution.Processing;

namespace ConferencePlanner.GraphQL.Sessions;
2 changes: 1 addition & 1 deletion code/session-5/GraphQL/Speakers/SpeakerDataLoaders.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using ConferencePlanner.GraphQL.Data;
using GreenDonut.Projections;
using GreenDonut.Selectors;
using Microsoft.EntityFrameworkCore;

namespace ConferencePlanner.GraphQL.Speakers;
2 changes: 1 addition & 1 deletion code/session-5/GraphQL/Speakers/SpeakerQueries.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using ConferencePlanner.GraphQL.Data;
using GreenDonut.Projections;
using GreenDonut.Selectors;
using HotChocolate.Execution.Processing;
using Microsoft.EntityFrameworkCore;

2 changes: 1 addition & 1 deletion code/session-5/GraphQL/Speakers/SpeakerType.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using ConferencePlanner.GraphQL.Data;
using GreenDonut.Projections;
using GreenDonut.Selectors;
using HotChocolate.Execution.Processing;

namespace ConferencePlanner.GraphQL.Speakers;
2 changes: 1 addition & 1 deletion code/session-5/GraphQL/Tracks/TrackDataLoaders.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using ConferencePlanner.GraphQL.Data;
using GreenDonut.Projections;
using GreenDonut.Selectors;
using HotChocolate.Pagination;
using Microsoft.EntityFrameworkCore;

2 changes: 1 addition & 1 deletion code/session-5/GraphQL/Tracks/TrackQueries.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using ConferencePlanner.GraphQL.Data;
using GreenDonut.Projections;
using GreenDonut.Selectors;
using HotChocolate.Execution.Processing;
using Microsoft.EntityFrameworkCore;

2 changes: 1 addition & 1 deletion code/session-5/GraphQL/Tracks/TrackType.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using ConferencePlanner.GraphQL.Data;
using ConferencePlanner.GraphQL.Extensions;
using GreenDonut.Projections;
using GreenDonut.Selectors;
using HotChocolate.Execution.Processing;
using HotChocolate.Pagination;
using HotChocolate.Types.Pagination;
2 changes: 1 addition & 1 deletion code/session-6/GraphQL/Attendees/AttendeeDataLoaders.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using ConferencePlanner.GraphQL.Data;
using GreenDonut.Projections;
using GreenDonut.Selectors;
using Microsoft.EntityFrameworkCore;

namespace ConferencePlanner.GraphQL.Attendees;
2 changes: 1 addition & 1 deletion code/session-6/GraphQL/Attendees/AttendeeQueries.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using ConferencePlanner.GraphQL.Data;
using GreenDonut.Projections;
using GreenDonut.Selectors;
using HotChocolate.Execution.Processing;
using Microsoft.EntityFrameworkCore;

2 changes: 1 addition & 1 deletion code/session-6/GraphQL/Attendees/AttendeeType.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using ConferencePlanner.GraphQL.Data;
using GreenDonut.Projections;
using GreenDonut.Selectors;
using HotChocolate.Execution.Processing;

namespace ConferencePlanner.GraphQL.Attendees;
14 changes: 7 additions & 7 deletions code/session-6/GraphQL/GraphQL.csproj
Original file line number Diff line number Diff line change
@@ -9,13 +9,13 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="HotChocolate.AspNetCore" Version="14.0.0-rc.3" />
<PackageReference Include="HotChocolate.AspNetCore.CommandLine" Version="14.0.0-rc.3" />
<PackageReference Include="HotChocolate.Data" Version="14.0.0-rc.3" />
<PackageReference Include="HotChocolate.Data.EntityFramework" Version="14.0.0-rc.3" />
<PackageReference Include="HotChocolate.Pagination.EntityFramework" Version="14.0.0-rc.3" />
<PackageReference Include="HotChocolate.Subscriptions.Redis" Version="14.0.0-rc.3" />
<PackageReference Include="HotChocolate.Types.Analyzers" Version="14.0.0-rc.3" />
<PackageReference Include="HotChocolate.AspNetCore" Version="14.0.0" />
<PackageReference Include="HotChocolate.AspNetCore.CommandLine" Version="14.0.0" />
<PackageReference Include="HotChocolate.Data" Version="14.0.0" />
<PackageReference Include="HotChocolate.Data.EntityFramework" Version="14.0.0" />
<PackageReference Include="HotChocolate.Pagination.EntityFramework" Version="14.0.0" />
<PackageReference Include="HotChocolate.Subscriptions.Redis" Version="14.0.0" />
<PackageReference Include="HotChocolate.Types.Analyzers" Version="14.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.10">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
2 changes: 1 addition & 1 deletion code/session-6/GraphQL/Sessions/SessionDataLoaders.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using ConferencePlanner.GraphQL.Data;
using GreenDonut.Projections;
using GreenDonut.Selectors;
using Microsoft.EntityFrameworkCore;

namespace ConferencePlanner.GraphQL.Sessions;
2 changes: 1 addition & 1 deletion code/session-6/GraphQL/Sessions/SessionQueries.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using ConferencePlanner.GraphQL.Data;
using GreenDonut.Projections;
using GreenDonut.Selectors;
using HotChocolate.Execution.Processing;
using Microsoft.EntityFrameworkCore;

2 changes: 1 addition & 1 deletion code/session-6/GraphQL/Sessions/SessionType.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using ConferencePlanner.GraphQL.Data;
using ConferencePlanner.GraphQL.Tracks;
using GreenDonut.Projections;
using GreenDonut.Selectors;
using HotChocolate.Execution.Processing;

namespace ConferencePlanner.GraphQL.Sessions;
2 changes: 1 addition & 1 deletion code/session-6/GraphQL/Speakers/SpeakerDataLoaders.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using ConferencePlanner.GraphQL.Data;
using GreenDonut.Projections;
using GreenDonut.Selectors;
using Microsoft.EntityFrameworkCore;

namespace ConferencePlanner.GraphQL.Speakers;
Loading