< Summary

Information
Class: Server.Schema.DemoSchema
Assembly: Server
File(s): /home/runner/work/NGql/NGql/src/Server/Schema/DemoSchema.cs
Line coverage
100%
Covered lines: 4
Uncovered lines: 0
Coverable lines: 4
Total lines: 13
Line coverage: 100%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
.ctor(...)100%11100%

File(s)

/home/runner/work/NGql/NGql/src/Server/Schema/DemoSchema.cs

#LineLine coverage
 1using System;
 2using MediatR;
 3
 4namespace Server.Schema;
 5
 6public class DemoSchema : GraphQL.Types.Schema
 7{
 68    public DemoSchema(ISender mediator, IServiceProvider provider) : base(provider)
 9    {
 610        Query = new UsersQuery(mediator);
 611        Mutation = new UserMutation(mediator);
 612    }
 13}