Field | Type | Description |
date | String | ISO 8601 formatted date |
employeeGrowth | Float | Employee growth from the last period (a fraction) |
employeeNumber | Int | Count of employees at the company |
# queryquery findCompanyByDomain($domain: String!) {company(domain: $domain) {employees {dateemployeeGrowthemployeeNumber}}}​# variables{ "domain": "facebook.com" }
​