All the examples I found in web are like this:
createArticle(article: Article): Observable<Article> {
return this.http.post<Article>(this.url, article);
}
so they assume that web API's response contains Article. How to write above so that an Article is posted to web API and the response is string?