0
1
# Type your query
Play around with the Occupations and Job Titles GraphQL API. Try the examples below.
query AllSTEMJobs {
sTEMGroups(order: [code_ASC]) {
results {
code
subDomain {
domain {
title
}
title
}
occupationType {
title
}
SOCDetailedGroups {
results {
code
broadGroup {
minorGroup {
majorGroup {
title
}
title
}
title
}
title
definition
jobs {
results {
title
}
}
}
}
}
}
}
query SearchJobByTitle {
jobs(
where: { title: { matchesRegex: "engin" options: "i" } }
order: [title_ASC]
) {
results {
title
SOCDetailedGroup {
code
broadGroup {
minorGroup {
majorGroup {
title
}
title
}
title
}
title
STEMGroups {
results {
code
subDomain {
domain {
title
}
title
}
occupationType {
title
}
}
}
}
}
}
}