Skip to content

Commit

Permalink
Fixed badly formatted XML comment
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelstaib committed Jan 20, 2023
1 parent a40b0e3 commit 53d7a12
Showing 1 changed file with 5 additions and 4 deletions.
Expand Up @@ -131,7 +131,7 @@ public static class WellKnownContextData
/// The key to get the user provided transport operation session id when executing
/// GraphQL over Websocket.
/// </summary>
public const string OperationSessionId ="HotChocolate.Execution.Transport.OperationSessionId";
public const string OperationSessionId = "HotChocolate.Execution.Transport.OperationSessionId";

/// <summary>
/// The key to get the deferred task ID on the scoped context data.
Expand Down Expand Up @@ -204,6 +204,7 @@ public static class WellKnownContextData
/// </summary>
public const string IdValue = "HotChocolate.Relay.Node.Id.Value";

/// <summary>
/// The key to get check if a field is the node field.
/// </summary>
public const string IsNodeField = "HotChocolate.Relay.Node.IsNodeField";
Expand All @@ -227,7 +228,7 @@ public static class WellKnownContextData
/// The key of the marker setting that a field on the mutation type represents
/// the query field.
/// </summary>
public const string MutationQueryField = "HotChocolate.Relay.Mutations.QueryField";
public const string MutationQueryField = "HotChocolate.Relay.Mutations.QueryField";

/// <summary>
/// The key to get the Cache-Control header value from the context data.
Expand All @@ -247,10 +248,10 @@ public static class WellKnownContextData
/// <summary>
/// The key to retrieve the authorization options from the context.
/// </summary>
public const string AuthorizationOptions = "HotChocolate.Authorization.Options";
public const string AuthorizationOptions = "HotChocolate.Authorization.Options";

/// <summary>
/// The key to check if this schema contains request policies.
/// </summary>
public const string AuthorizationRequestPolicy = "HotChocolate.Authorization.RequestPolicy";
public const string AuthorizationRequestPolicy = "HotChocolate.Authorization.RequestPolicy";
}

0 comments on commit 53d7a12

Please sign in to comment.