/
Launch Apollo Studio


EXTENSION

RequestChainNetworkTransport

extension RequestChainNetworkTransport: UploadingNetworkTransport

Methods

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

NameDescription
operationThe operation to create a request for
filesThe 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) -> Cancellable

Parameters

NameDescription
operationThe operation to send
filesAn array of GraphQLFile objects to send.
callbackQueueThe queue to call back on with the results. Should default to .main.
completionHandlerThe completion handler to execute when the request completes or errors
Edit on GitHub