Skip to content

Commit

Permalink
GraphQL Specification link updated (#2785)
Browse files Browse the repository at this point in the history
* GraphQL Specification link updated

* http to https
  • Loading branch information
firatkucuk committed Apr 9, 2022
1 parent f0d3036 commit e95283f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/graphql/GraphQLError.java
Expand Up @@ -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 <a href="https://facebook.github.io/graphql/#sec-Errors">GraphQL Spec - 7.2.2 Errors</a>
* @see <a href="https://spec.graphql.org/October2021/#sec-Errors">GraphQL Spec - 7.1.2 Errors</a>
*/
@PublicApi
public interface GraphQLError extends Serializable {
Expand Down Expand Up @@ -51,7 +51,7 @@ default List<Object> 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 : <a href="http://facebook.github.io/graphql/#sec-Errors">http://facebook.github.io/graphql/#sec-Errors</a>
* See : <a href="https://spec.graphql.org/October2021/#sec-Errors">GraphQL Spec - 7.1.2 Errors</a>
*
* @return a map of the error that strictly follows the specification
*/
Expand Down

0 comments on commit e95283f

Please sign in to comment.