EXTENSION
RequestChainNetworkTransport
extension RequestChainNetworkTransport: UploadingNetworkTransportMethods
constructUploadRequest(for:with:)
open func constructUploadRequest<Operation: GraphQLOperation>(
for operation: Operation,
with files: [GraphQLFile]) -> HTTPRequest<Operation>Constructs an uploading (ie, multipart) GraphQL request
Override this method if you need to use a custom subclass of
HTTPRequest.
Parameters:
- operation: The operation to create a request for
- files: The files you wish to upload
- Returns: The created request.
Parameters
| Name | Description |
|---|---|
| operation | The operation to create a request for |
| files | The files you wish to upload |
upload(operation:files:callbackQueue:completionHandler:)
public func upload<Operation: GraphQLOperation>(
operation: Operation,
files: [GraphQLFile],
callbackQueue: DispatchQueue = .main,
completionHandler: @escaping (Result<GraphQLResult<Operation.Data>, Error>) -> Void) -> CancellableParameters
| Name | Description |
|---|---|
| operation | The operation to send |
| files | An array of GraphQLFile objects to send. |
| callbackQueue | The queue to call back on with the results. Should default to .main. |
| completionHandler | The completion handler to execute when the request completes or errors |