Interface ExecutionGraphQlResponse

All Superinterfaces:
GraphQlResponse
All Known Implementing Classes:
DefaultExecutionGraphQlResponse, RSocketGraphQlResponse, WebGraphQlResponse

public interface ExecutionGraphQlResponse extends GraphQlResponse
Implementation of GraphQlResponse that wraps the ExecutionResult returned from GraphQL to expose it as GraphQlResponse, also providing access to the ExecutionInput used for the request.
Since:
1.0.0
Author:
Rossen Stoyanchev
  • Method Details

    • getExecutionInput

      graphql.ExecutionInput getExecutionInput()
      Return the ExecutionInput that was prepared through the ExecutionGraphQlRequest and passed to GraphQL.
    • getExecutionResult

      graphql.ExecutionResult getExecutionResult()
      Return the ExecutionResult that was returned from the invocation to GraphQL.