Backend (.NET 10): - EventFlow CQRS/Event Sourcing with PostgreSQL - GraphQL.NET API with mutations and queries - Custom ReadModelSqlGenerator for snake_case PostgreSQL columns - Hangfire for background job processing - Integration tests with isolated test databases Frontend (React/Vite): - Initial project structure 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
14 lines
389 B
C#
14 lines
389 B
C#
using Books.Api.GraphQL.Mutations;
|
|
using Books.Api.GraphQL.Queries;
|
|
using GraphQL.Types;
|
|
|
|
namespace Books.Api.GraphQL;
|
|
|
|
public class BooksSchema : Schema
|
|
{
|
|
public BooksSchema(IServiceProvider serviceProvider) : base(serviceProvider)
|
|
{
|
|
Query = serviceProvider.GetRequiredService<BooksQuery>();
|
|
Mutation = serviceProvider.GetRequiredService<BooksMutation>();
|
|
}
|
|
}
|