We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Ok(expr?)
1 parent 97565a3 commit 1583e7cCopy full SHA for 1583e7c
graphql_client/src/reqwest.rs
@@ -13,7 +13,7 @@ pub async fn post_graphql<Q: GraphQLQuery, U: reqwest::IntoUrl>(
13
let body = Q::build_query(variables);
14
let reqwest_response = client.post(url).json(&body).send().await?;
15
16
- Ok(reqwest_response.json().await?)
+ reqwest_response.json().await
17
}
18
19
/// Use the provided reqwest::Client to post a GraphQL request.
0 commit comments