pub type Response = Response;
Expand description

The response type for execution services is the same as for supergraph services.

Aliased Type§

struct Response {
    pub response: Response<Pin<Box<dyn Stream<Item = Response> + Send>>>,
    pub context: Context,
}

Fields§

§response: Response<Pin<Box<dyn Stream<Item = Response> + Send>>>§context: Context