Jobs
The granular level job detail data for this company
Field | Type | Description |
city | String | City |
country | String | Country code |
createdAt | String | ISO 8601 formatted DateTime job was created |
description | String | Description of the job |
naicsCode | String | NAICS code |
naicsDescription | String | NAICS sector description |
onetOccupationCode | String | ONET code |
onetOccupationName | String | ONET occupation name |
region | String | Region |
title | String | Job Title |
uid | Internal job ID | |
updatedAt | String | ISO 8601 formatted DateTime job was updated |
zipCode | String | Zip Code |
first
– Number of jobs to retrieve, should not exceed 100offset
– Offset in the list# query
query findCompanyByDomain($domain: String!) {
company(domain: $domain) {
jobsCount
jobs(first: 10, offset: 100) {
city
country
createdAt
description
naicsCode
naicsDescription
onetOccupationCode
onetOccupationName
region
title
uid
updatedAt
zipCode
}
}
}
# variables
{ "domain": "facebook.com" }
Last modified 2yr ago