News Articles
The latest news about the company and blogs posted by the company
This returns news articles and company blog posts.
Field | Type | Description |
headline | String | Article title |
publishedAt | String | ISO 8601 formatted publication time |
source | String | Source label |
summary | String | Summary of the article |
url | String | Original article URL |
first
– Number of news/blogs to retrieve, should not exceed 100. Default is 10
.offset
– Offset in the list. Default is 0
.# query
query findCompanyByDomain($domain: String!) {
company(domain: $domain) {
news(first: 10, offset: 0) {
headline
publishedAt
source
summary
url
}
blogs(first: 10, offset: 0) {
headline
publishedAt
source
summary
url
}
}
}
# variables
{ "domain": "stripe.com" }
Last modified 9mo ago