using HotChocolate; using HotChocolate.Authorization; namespace FictionArchive.Service.ReportingService.GraphQL; public class Mutation { /// /// Placeholder mutation for GraphQL schema requirements. /// The ReportingService is primarily read-only, consuming events from other services. /// [Authorize(Roles = ["admin"])] [GraphQLDescription("Placeholder mutation. ReportingService is primarily read-only.")] public bool Ping() => true; }