Skip to content

Commit 7bc928c

Browse files
authored
Update object_type.rb
https://git.io/xxx links redirect to old repo name in `github` organisation. It's just an example of the issue (you don't have issues tab on your repo, otherwise I'd just submitted issue, not code change), I think there's more broken links + tests + you probably want to keep them shortened (and git.io doesn't accept new links).
1 parent b177b19 commit 7bc928c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/graphql/client/schema/object_type.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -255,13 +255,13 @@ def method_missing(name, *args)
255255
end
256256

257257
unless field
258-
raise UnimplementedFieldError, "undefined field `#{e.name}' on #{type.graphql_name} type. https://git.io/v1y3m"
258+
raise UnimplementedFieldError, "undefined field `#{e.name}' on #{type.graphql_name} type. https://github.com/github-community-projects/graphql-client/blob/master/guides/unimplemented-field-error.md"
259259
end
260260

261261
if @data.key?(field.name)
262-
raise ImplicitlyFetchedFieldError, "implicitly fetched field `#{field.name}' on #{type} type. https://git.io/v1yGL"
262+
raise ImplicitlyFetchedFieldError, "implicitly fetched field `#{field.name}' on #{type} type. https://github.com/github-community-projects/graphql-client/blob/master/guides/implicitly-fetched-field-error.md"
263263
else
264-
raise UnfetchedFieldError, "unfetched field `#{field.name}' on #{type} type. https://git.io/v1y3U"
264+
raise UnfetchedFieldError, "unfetched field `#{field.name}' on #{type} type. https://github.com/github-community-projects/graphql-client/blob/master/guides/unfetched-field-error.md"
265265
end
266266
end
267267
end

0 commit comments

Comments
 (0)