Skip to content

Commit ea0f22f

Browse files
docs(src/handler): navigate section links reference comments (#143)
1 parent a45a5c5 commit ea0f22f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/handler.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ export interface HandlerOptions<
390390
getOperationAST?: typeof graphqlGetOperationAST;
391391
/**
392392
* The GraphQL root value or resolvers to go alongside the execution.
393-
* Learn more about them here: https://graphql.org/learn/execution/#root-fields-resolvers.
393+
* Learn more about them here: https://graphql.org/learn/execution/#root-fields-and-resolvers.
394394
*
395395
* If you return from `onSubscribe`, and the returned value is
396396
* missing the `rootValue` field, the relevant operation root
@@ -706,7 +706,7 @@ export function createHandler<
706706
}
707707

708708
// mutations cannot happen over GETs
709-
// https://graphql.github.io/graphql-over-http/draft/#sel-CALFJRPAAELBAAxwP
709+
// https://graphql.github.io/graphql-over-http/draft/#sel-GALJTPABABgCzsd
710710
if (operation === 'mutation' && req.method === 'GET') {
711711
return [
712712
JSON.stringify({

0 commit comments

Comments
 (0)