Skip to content

Commit 0fe18bc

Browse files
Merge pull request #168 from NeedleInAJayStack/fix/graphqlresult-sendable
`GraphQLResult` marked Sendable
2 parents eedec2b + 3daec9d commit 0fe18bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/GraphQL/GraphQLRequest.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import Foundation
22

33
/// A GraphQL request object, containing `query`, `operationName`, and `variables` fields
4-
public struct GraphQLRequest: Equatable, Codable {
4+
public struct GraphQLRequest: Equatable, Codable, Sendable {
55
public var query: String
66
public var operationName: String?
77
public var variables: [String: Map]

0 commit comments

Comments
 (0)