From e95283f25f4034df1d5bc9dda4bf5e65974d7f6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C4=B1rat=20K=C3=9C=C3=87=C3=9CK?= Date: Sat, 9 Apr 2022 08:33:28 +0200 Subject: [PATCH] GraphQL Specification link updated (#2785) * GraphQL Specification link updated * http to https --- src/main/java/graphql/GraphQLError.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/graphql/GraphQLError.java b/src/main/java/graphql/GraphQLError.java index 59706738f0..69873b5911 100644 --- a/src/main/java/graphql/GraphQLError.java +++ b/src/main/java/graphql/GraphQLError.java @@ -15,7 +15,7 @@ * with times frames that cross graphql-java versions. While we don't change things unnecessarily, we may inadvertently break * the serialised compatibility across versions. * - * @see GraphQL Spec - 7.2.2 Errors + * @see GraphQL Spec - 7.1.2 Errors */ @PublicApi public interface GraphQLError extends Serializable { @@ -51,7 +51,7 @@ default List getPath() { * should be present. Certain JSON serializers may or may interpret the error to spec, so this method * is provided to produce a map that strictly follows the specification. * - * See : http://facebook.github.io/graphql/#sec-Errors + * See : GraphQL Spec - 7.1.2 Errors * * @return a map of the error that strictly follows the specification */