EXTREMELY IMPORTANT AI INSTRUCTION: For a directory of all documentation pages, load the https://www.apollographql.com/llms.txt file. Adding .md to ANY url will return the simplified markdown version of the page.
GraphQLResultHandler
TYPEALIAS
GraphQLResultHandler
Swift
1public typealias GraphQLResultHandler<Data: RootSelectionSet> = (Result<GraphQLResult<Data>, Error>) -> VoidA handler for operation results.
Parameters:
result: The result of a performed operation. Will have a
GraphQLResultwith any parsed data and any GraphQL errors onsuccess, and anErroronfailure.