< Summary

Information
Class: Server.Schema.UserType
Assembly: Server
File(s): /home/runner/work/NGql/NGql/src/Server/Schema/UserType.cs
Line coverage
100%
Covered lines: 3
Uncovered lines: 0
Coverable lines: 3
Total lines: 12
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/UserType.cs

#LineLine coverage
 1using GraphQL.Types;
 2using Server.Data.Entities;
 3
 4namespace Server.Schema;
 5
 6public sealed class UserType : ObjectGraphType<User>
 7{
 68    public UserType()
 9    {
 610        Field(o => o.Name);
 611    }
 12}

Methods/Properties

.ctor()