feat: fix extract

This commit is contained in:
2023-03-19 00:50:21 +01:00
parent ab6141ffb4
commit 6d053da9f4
3 changed files with 60 additions and 182 deletions

View File

@@ -278,10 +278,8 @@ fn render_execution(funcs: &CommonFunctions, field: &FullTypeFields) -> rust::To
};
}
let graphql_client = rust::import("crate::client", "graphql_client");
quote! {
query.execute(&$graphql_client(&self.conn)).await
query.execute(self.graphql_client.clone()).await
}
}