Employment variety

Definition

Varieties of employment, both ordinary employment types and self employment types.

Description

Employment variety acts as a top node for both employment-type and self-employment-type concepts, and may refer to either, forming a two level hierarchy.

GraphQL examples

The queries below can be tested through our GraphiQL interface.

Get all employment varieties

query employment_variety {
  concepts(type: "employment-variety") {
    id
    preferred_label
    definition
    type
    narrower {
      id
      preferred_label
      definition
      type
    }
  }
}