API Sample
Jobs and Pending Jobs Query
Paste in your token value below (without the word "Bearer").
Query
query jobsQuery {
skillsJobs: entries(section: "jobs", limit: null, orderBy: "dateCreated DESC", enabledForSite:true) {
dateCreated @formatDateTime (format: "m-d-Y")
title,
sectionHandle,
...on jobs_jobs_Entry {
company {
title
},
city {
title
},
state {
title
},
industry {
title
},
detailLink,
}
},
pendingJobs: entries(section: "pendingJobs", limit: null, orderBy: "dateCreated DESC", enabledForSite:true) {
dateCreated @formatDateTime (format: "m-d-Y")
title,
sectionHandle,
... on pendingJobs_pendingJobs_Entry {
id,
jobId,
jobPostedOn,
featuredJob,
positionDescription,
company {
title
},
city {
title
},
state {
title
},
industry {
title
},
primaryLocationStreetAddress,
primaryLocationCity,
primaryLocationState,
primaryLocationZipCode,
MultipleLocations,
additionalJobLocations,
whatShifts,
whatAreTheWages,
applyOther,
applyViaEmail,
applyViaPhone,
applyInPersonAtJobLocation,
viaCompanyWebsite,
thoughtsOrComments,
logoPermission,
detailLink
}
}
}
Result