Class GraphQLFailureData
Failure data attached to a graphql.failure observation.
public sealed record GraphQLFailureData : IEquatable<GraphQLFailureData>
- Inheritance
-
GraphQLFailureData
- Implements
- Inherited Members
- Extension Methods
Constructors
GraphQLFailureData(string, string?, TimeSpan, string, string)
Failure data attached to a graphql.failure observation.
public GraphQLFailureData(string OperationType, string? OperationName, TimeSpan Duration, string ExceptionType, string Message)
Parameters
Properties
Duration
public TimeSpan Duration { get; init; }
Property Value
ExceptionType
public string ExceptionType { get; init; }
Property Value
Message
public string Message { get; init; }
Property Value
OperationName
public string? OperationName { get; init; }
Property Value
OperationType
public string OperationType { get; init; }