pub fn graphql_opts<E>(
    executor: E,
    opts: MultipartOptions
) -> impl Filter<Extract = ((E, Request),), Error = Rejection> + Clonewhere
    E: Executor,
Expand description

Similar to graphql, but you can set the options async_graphql::MultipartOptions.

Examples found in repository?
src/request.rs (line 51)
45
46
47
48
49
50
51
52
pub fn graphql<E>(
    executor: E,
) -> impl Filter<Extract = ((E, async_graphql::Request),), Error = Rejection> + Clone
where
    E: Executor,
{
    graphql_opts(executor, Default::default())
}