Closes gh-1165
Signed-off-by: Tran Ngoc Nhan <ngocnhan.tran1996@gmail.com>
This commit is contained in:
Tran Ngoc Nhan
2025-03-28 14:09:21 +07:00
committed by Brian Clozel
parent afd481c7e9
commit 53980216ea
3 changed files with 3 additions and 3 deletions

View File

@@ -73,7 +73,7 @@ https://github.com/jaydenseric/graphql-multipart-request-spec[graphql-multipart-
that allows file uploads with GraphQL over HTTP.
Spring for GraphQL does not support the `graphql-multipart-request-spec` directly.
While the spec does provide the benefit of a unified GraphQL API, the actual experince has
While the spec does provide the benefit of a unified GraphQL API, the actual experience has
led to a number of issues, and best practice recommendations have evolved, see
https://www.apollographql.com/blog/backend/file-uploads/file-upload-best-practices/[Apollo Server File Upload Best Practices]
for a more detailed discussion.

View File

@@ -57,7 +57,7 @@ public class FieldAccessException extends GraphQlClientException {
/**
* Return the [@code GraphQlResponse} for which the error ouccrred.
* Return the [@code GraphQlResponse} for which the error occurred.
*/
public ClientGraphQlResponse getResponse() {
return this.response;

View File

@@ -87,7 +87,7 @@ public class GraphQlWebSocketMessage {
}
/**
* Return the message type as an emum.
* Return the message type as an enum.
*/
public GraphQlWebSocketMessageType resolvedType() {
Assert.state(this.type != null, "GraphQlWebSocketMessage does not have a type");