hiringOrganizations
QUERY

A page of hirers that have an active relationship with the requesting partner.This will not return agencies; it's not possible to have a relationship with an agency.A maximum of 100 hirers can be returned in a single page. Additional hirers can be queried using a pagination cursor.The result list is ordered alphabetically by the hirer's name.This query accepts browser tokens that include the query:organizations scope. It will only return the single hirer that the browser token is scoped to.

Arguments

Name
Description
schemeId* 
String!
The scheme ID of the hirers.Currently, only seekAnz and seekAnzPublicTest are supported.
after 
String
An opaque cursor to the earlier bounding hirer.Resulting hirers will be alphabetically later than this cursor.
before 
String
An opaque cursor to the later bounding hirers.Resulting hirers will be alphabetically earlier than this cursor.
The additional HiringOrganization-specific criteria to filter by.
first 
Int
The upper limit of hirers to return from the start of the list.Defaults to 10 if neither first nor last are specified. Excess hirers will be trimmed from the end of the list.first and last cannot be specified in the same query.
last 
Int
The upper limit of hirers to return from the end of the list.Excess hirers will be trimmed from the start of the list.first and last cannot be specified in the same query.

Result

Name
Description
A page of hirers.

Sample

GraphQL
query ($schemeId: String!) {
  hiringOrganizations(schemeId: $schemeId) {
    edges {
      cursor
    }
  }
}