Skip to content

Commit

Permalink
change extensions property to var
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardohg committed Nov 7, 2023
1 parent a005ac9 commit f729246
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/Apollo/GraphQLResult.swift
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public struct GraphQLResult<Data: RootSelectionSet> {
/// A list of errors, or `nil` if the operation completed without encountering any errors.
public let errors: [GraphQLError]?
/// A dictionary which services can use however they see fit to provide additional information to clients.
public let extensions: [String: AnyHashable]?
public var extensions: [String: AnyHashable]?
/// Metadata of this result.
public let metadata: GraphQLResultMetadata

Expand Down

0 comments on commit f729246

Please sign in to comment.