From 53d7a12328d3269c35a0d845ca02ec5e1a75468a Mon Sep 17 00:00:00 2001 From: Michael Staib Date: Fri, 20 Jan 2023 10:33:51 +0100 Subject: [PATCH] Fixed badly formatted XML comment --- .../Core/src/Abstractions/WellKnownContextData.cs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/HotChocolate/Core/src/Abstractions/WellKnownContextData.cs b/src/HotChocolate/Core/src/Abstractions/WellKnownContextData.cs index e43ff5464df..dcfbec0d448 100644 --- a/src/HotChocolate/Core/src/Abstractions/WellKnownContextData.cs +++ b/src/HotChocolate/Core/src/Abstractions/WellKnownContextData.cs @@ -131,7 +131,7 @@ public static class WellKnownContextData /// The key to get the user provided transport operation session id when executing /// GraphQL over Websocket. /// - public const string OperationSessionId ="HotChocolate.Execution.Transport.OperationSessionId"; + public const string OperationSessionId = "HotChocolate.Execution.Transport.OperationSessionId"; /// /// The key to get the deferred task ID on the scoped context data. @@ -204,6 +204,7 @@ public static class WellKnownContextData /// public const string IdValue = "HotChocolate.Relay.Node.Id.Value"; + /// /// The key to get check if a field is the node field. /// public const string IsNodeField = "HotChocolate.Relay.Node.IsNodeField"; @@ -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. /// - public const string MutationQueryField = "HotChocolate.Relay.Mutations.QueryField"; + public const string MutationQueryField = "HotChocolate.Relay.Mutations.QueryField"; /// /// The key to get the Cache-Control header value from the context data. @@ -247,10 +248,10 @@ public static class WellKnownContextData /// /// The key to retrieve the authorization options from the context. /// - public const string AuthorizationOptions = "HotChocolate.Authorization.Options"; + public const string AuthorizationOptions = "HotChocolate.Authorization.Options"; /// /// The key to check if this schema contains request policies. /// - public const string AuthorizationRequestPolicy = "HotChocolate.Authorization.RequestPolicy"; + public const string AuthorizationRequestPolicy = "HotChocolate.Authorization.RequestPolicy"; }