The Added Company API provides a way to query information about new companies.
Argument | Type | Description | Default |
first | Int | Number of companies to retrieve, should not exceed 100 | 100 |
offset | Int | Offset in the list | 0 |
activatedAtTimeFrame | ​TimeFrame!​ | A specific time period to retrieve added companies, should not exceed 30 days | ​ |
Filed | Type | Description |
nodes | [BasicCompany!]! | Basic company fields |
totalCount | Int! | Total count of all added companies for a period |
# queryquery addedCompanies($activatedAtTimeFrame: TimeFrame!, $first: Int!, offset: Int!) {addedCompanies(activatedAtTimeFrame: $activatedAtTimeFrame, first: $first, offset: $offset) {nodes {activatedAtdisplayNamedunshomepageidslug}totalCount}}​# variables{ "activatedAtTimeFrame": {"from": "2020-07-03","to": "2020-07-07"},"first": 10,"offset": 10}