# News Articles

This returns news articles and company blog posts.

### Fields

| 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                  |

### Arguments

`first` – Number of news/blogs to retrieve, should not exceed 100. Default is `10`.

`offset` – Offset in the list. Default is `0`.

### Query example

```graphql
# 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" }
```
