The Database Hub | Back4App
The Database Hub | Back4App
How it works
  • Log In
  • Sign Up

  1. Back4App
  2. Occupations and Job Titles
Public

88
65
88
65
  • DatabaseDatabase
  • GraphQL API PlaygroundAPI Playground
  • Get Started GuideGet Started
  • IssuesIssues
  • ContributorsContributors
  • Database
    Database
    Get Started Guide
    Get Started
    Issues
    Issues
    Contributors
    Contributors
0
1
# Type your query
NotesNotes

Occupations and Job Titles GraphQL API Playground

Play around with the Occupations and Job Titles GraphQL API. Try the examples below.

All STEM Jobs

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
            }
          }
        }
      }
    }
  }
}

Search Job by 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
            }
          }
        }
      }
    }
  }
}