You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
raiseDynamicQueryError,"expected definition to be assigned to a static constant https://git.io/vXXSE"
341
+
raiseDynamicQueryError,"expected definition to be assigned to a static constant https://github.com/github-community-projects/graphql-client/blob/master/guides/dynamic-query-error.md"
error=NonCollocatedCallerError.new("#{method} was called outside of '#{path}' https://git.io/v1syX")
29
+
error=NonCollocatedCallerError.new("#{method} was called outside of '#{path}' https://github.com/github-community-projects/graphql-client/blob/master/guides/collocated-call-sites.md")
raiseUnimplementedFieldError,"undefined field `#{e.name}' on #{type.graphql_name} type. https://git.io/v1y3m"
258
+
raiseUnimplementedFieldError,"undefined field `#{e.name}' on #{type.graphql_name} type. https://github.com/github-community-projects/graphql-client/blob/master/guides/unimplemented-field-error.md"
259
259
end
260
260
261
261
if@data.key?(field.name)
262
-
raiseImplicitlyFetchedFieldError,"implicitly fetched field `#{field.name}' on #{type} type. https://git.io/v1yGL"
262
+
raiseImplicitlyFetchedFieldError,"implicitly fetched field `#{field.name}' on #{type} type. https://github.com/github-community-projects/graphql-client/blob/master/guides/implicitly-fetched-field-error.md"
263
263
else
264
-
raiseUnfetchedFieldError,"unfetched field `#{field.name}' on #{type} type. https://git.io/v1y3U"
264
+
raiseUnfetchedFieldError,"unfetched field `#{field.name}' on #{type} type. https://github.com/github-community-projects/graphql-client/blob/master/guides/unfetched-field-error.md"
Copy file name to clipboardExpand all lines: test/test_query_result.rb
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -347,7 +347,7 @@ def test_no_method_error
347
347
person.nickname
348
348
flunk
349
349
rescueGraphQL::Client::UnimplementedFieldError=>e
350
-
assert_match"undefined field `nickname' on Person type. https://git.io/v1y3m",e.to_s
350
+
assert_match"undefined field `nickname' on Person type. https://github.com/github-community-projects/graphql-client/blob/master/guides/unimplemented-field-error.md",e.to_s
assert_raisesGraphQL::Client::UnfetchedFieldError,"unfetched field `name' on Person type. https://git.io/v1y3U"do
365
+
assert_raisesGraphQL::Client::UnfetchedFieldError,"unfetched field `name' on Person type. https://github.com/github-community-projects/graphql-client/blob/master/guides/unfetched-field-error.md"do
assert_raisesGraphQL::Client::UnfetchedFieldError,"unfetched field `firstName' on Person type. https://git.io/v1y3U"do
381
+
assert_raisesGraphQL::Client::UnfetchedFieldError,"unfetched field `firstName' on Person type. https://github.com/github-community-projects/graphql-client/blob/master/guides/unfetched-field-error.md"do
assert_raisesGraphQL::Client::ImplicitlyFetchedFieldError,"implicitly fetched field `name' on Person type. https://git.io/v1yGL"do
404
+
assert_raisesGraphQL::Client::ImplicitlyFetchedFieldError,"implicitly fetched field `name' on Person type. https://github.com/github-community-projects/graphql-client/blob/master/guides/implicitly-fetched-field-error.md"do
assert_raisesGraphQL::Client::ImplicitlyFetchedFieldError,"implicitly fetched field `firstName' on Person type. https://git.io/v1yGL"do
427
+
assert_raisesGraphQL::Client::ImplicitlyFetchedFieldError,"implicitly fetched field `firstName' on Person type. https://github.com/github-community-projects/graphql-client/blob/master/guides/implicitly-fetched-field-error.md"do
assert_raisesGraphQL::Client::ImplicitlyFetchedFieldError,"implicitly fetched field `name' on Person type. https://git.io/v1yGL"do
449
+
assert_raisesGraphQL::Client::ImplicitlyFetchedFieldError,"implicitly fetched field `name' on Person type. https://github.com/github-community-projects/graphql-client/blob/master/guides/implicitly-fetched-field-error.md"do
0 commit comments