positionOpenings
QUERY

A page of position openings for the given hirerId.Currently, only position openings in the global and globalPublicTest schemes are returned.A maximum of 20 position openings can be returned in a single page. Additional position openings can be queried using a pagination cursor.

Arguments

Name
Description
hirerId* 
String!
The identifier for the HiringOrganization to retrieve position openings for.
after 
String
An opaque cursor to the earlier bounding page.Resulting position openings will succeed this cursor.
The additional PositionOpening-specific criteria to filter by.
first 
Int
The upper limit of position openings to return from the start of the list.Defaults to 10 if first is not specified. Excess position openings will be trimmed from the end of the list.

Result

Name
Description
A page of position openings.

Sample

GraphQL
query ($hirerId: String!) {
  positionOpenings(hirerId: $hirerId) {
    edges {
      cursor
    }
  }
}