findHiringLabWagesPublic
Get publicly available wage growth data.
Arguments
first Int default:50
after String
input FindHiringLabWagesPublicInput! Required
filter FindHiringLabWagesFilterInput! Required
country [String!]! Required
Country codes where the job postings are located, including Euro Area.
sector [String!]
Sector names to filter by.
Response
Returns FindHiringLabWagesPublicConnection .edges [HiringLabWageEdge!]! Non-Null
node HiringLabWageData! 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
wages [HiringLabWageData]! Non-Null
Example
Query
query FindHiringLabWagesPublic( $first: Int, $after: String, $input: FindHiringLabWagesPublicInput!) { findHiringLabWagesPublic( first: $first, after: $after, input: $input ) { edges { node { ... on HiringLabNationalWage { id date country { countryCode countryName } wageGrowthYoy wageGrowth3Ma } ... on HiringLabSectoralWage { id date country { countryCode countryName } sector { sectorCode sectorName } wageGrowthYoy wageGrowth3Ma } } cursor } pageInfo { endCursor hasNextPage hasPreviousPage startCursor } wages { ... on HiringLabNationalWage { id date country { countryCode countryName } wageGrowthYoy wageGrowth3Ma } ... on HiringLabSectoralWage { id date country { countryCode countryName } sector { sectorCode sectorName } wageGrowthYoy wageGrowth3Ma } } }}Variables
{ "first": 50, "after": "Generated Argument example for findHiringLabWagesPublic after", "input": FindHiringLabWagesPublicInput}Response
{ "data": { "findHiringLabWagesPublic": { "edges": [HiringLabWageEdge], "pageInfo": PageInfo, "wages": [HiringLabNationalWage] } }}