findHiringLabPostingsPublic
Get publicly available job postings data.
Arguments
first Int default:50
after String
input FindHiringLabPostingsPublicInput! Required
filter FindHiringLabPostingsFilterInput! Required
country [String!]! Required
Country codes where the job postings are located.
geography GeographyType
Geography type to filter by.
region [String!]
Region names to filter by.
sector [String!]
Sector names to filter by.
postingType PostingType default:TOTAL
Type of job postings to include: TOTAL or NEW postings (on the site seven days or less) only.
Response
Returns FindHiringLabPostingsPublicConnection .edges [HiringLabPostingEdge!]! Non-Null
node HiringLabPostingData! Non-Null
cursor String! Non-Null
pageInfo PageInfo! Non-Null
endCursor String
When paginating forwards, the cursor to continue. Null if there is no next page
hasNextPage Boolean! Non-Null
Indicates if there are more pages to fetch
hasPreviousPage Boolean! Non-Null
Indicates if there are any pages prior to the current page
startCursor String
When paginating backwards, the cursor to continue. Null if there is no previous page
postings [HiringLabPostingData]! Non-Null
Example
Query
query FindHiringLabPostingsPublic( $first: Int, $after: String, $input: FindHiringLabPostingsPublicInput!) { findHiringLabPostingsPublic( first: $first, after: $after, input: $input ) { edges { node { ... on HiringLabNationalPosting { id date country { countryCode countryName } postingType indexSa indexNsa } ... on HiringLabSectoralPosting { id date country { countryCode countryName } sector { sectorCode sectorName } postingType indexSa indexNsa } ... on HiringLabRegionalPosting { id date country { countryCode countryName } region { regionCode regionName } geography { geography } postingType indexSa indexNsa } } cursor } pageInfo { endCursor hasNextPage hasPreviousPage startCursor } postings { ... on HiringLabNationalPosting { id date country { countryCode countryName } postingType indexSa indexNsa } ... on HiringLabSectoralPosting { id date country { countryCode countryName } sector { sectorCode sectorName } postingType indexSa indexNsa } ... on HiringLabRegionalPosting { id date country { countryCode countryName } region { regionCode regionName } geography { geography } postingType indexSa indexNsa } } }}Variables
{ "first": 50, "after": "Generated Argument example for findHiringLabPostingsPublic after", "input": FindHiringLabPostingsPublicInput}Response
{ "data": { "findHiringLabPostingsPublic": { "edges": [HiringLabPostingEdge], "pageInfo": PageInfo, "postings": [HiringLabNationalPosting] } }}