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
Copy file name to clipboardExpand all lines: Sources/Apollo/HTTPNetworkTransport.swift
+13-2Lines changed: 13 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -53,9 +53,20 @@ public class HTTPNetworkTransport: NetworkTransport {
53
53
/// - url: The URL of a GraphQL server to connect to.
54
54
/// - configuration: A session configuration used to configure the session. Defaults to `URLSessionConfiguration.default`.
55
55
/// - sendOperationIdentifiers: Whether to send operation identifiers rather than full operation text, for use with servers that support query persistence. Defaults to false.
/// Creates a network transport with the specified server URL and session.
62
+
///
63
+
/// - Parameters:
64
+
/// - url: The URL of a GraphQL server to connect to.
65
+
/// - session: An URLSession instance to be used for ensuing operations.
66
+
/// - sendOperationIdentifiers: Whether to send operation identifiers rather than full operation text, for use with servers that support query persistence. Defaults to false.
0 commit comments