Skip to content

Commit ee248a6

Browse files
Merge pull request #655 from p4checo/change/make-graphql-result-error-public
Make `GraphQLResultError` public
2 parents 6a785ae + 2913dfe commit ee248a6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Sources/Apollo/GraphQLExecutor.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ struct GraphQLResolveInfo {
2424
}
2525
}
2626

27-
struct GraphQLResultError: Error, LocalizedError {
27+
public struct GraphQLResultError: Error, LocalizedError {
2828
let path: ResponsePath
29-
let underlying: Error
29+
public let underlying: Error
3030

3131
public var errorDescription: String? {
3232
return "Error at path \"\(path))\": \(underlying)"

0 commit comments

Comments
 (0)