initial commit

This commit is contained in:
Yui
2025-11-26 16:50:06 -03:00
commit 5644aa0ebf
47 changed files with 800 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
using Domain.Entities;
using GraphQLTEST.GraphQL.Mutations;
using HotChocolate.Execution;
using HotChocolate.Subscriptions;
namespace GraphQLTEST.GraphQL.Subscriptions;
[ExtendObjectType(nameof(SubscriptionType))]
public class UserSubscriptions
{
[Subscribe]
public Kill KillAdded([EventMessage] Kill kill) => kill;
}