findHiringLabPayTransparencyPublic
Get publicly available pay transparency data.
Arguments
first Int default:50
after String
input FindHiringLabPayTransparencyPublicInput! Required
filter FindHiringLabPayTransparencyFilterInput! 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.
Response
Returns FindHiringLabPayTransparencyPublicConnection .edges [HiringLabPayTransparencyEdge!]! Non-Null
node HiringLabPayTransparencyData! 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
payTransparency [HiringLabPayTransparencyData]! Non-Null
Example
Query
query FindHiringLabPayTransparencyPublic( $first: Int, $after: String, $input: FindHiringLabPayTransparencyPublicInput!) { findHiringLabPayTransparencyPublic( first: $first, after: $after, input: $input ) { edges { node { ... on HiringLabNationalPayTransparency { id date country { countryCode countryName } payTransparencyPct payTransparencyPct3Ma } ... on HiringLabSectoralPayTransparency { id date country { countryCode countryName } sector { sectorCode sectorName } payTransparencyPct payTransparencyPct3Ma } ... on HiringLabRegionalPayTransparency { id date country { countryCode countryName } region { regionCode regionName } geography { geography } payTransparencyPct payTransparencyPct3Ma } } cursor } pageInfo { endCursor hasNextPage hasPreviousPage startCursor } payTransparency { ... on HiringLabNationalPayTransparency { id date country { countryCode countryName } payTransparencyPct payTransparencyPct3Ma } ... on HiringLabSectoralPayTransparency { id date country { countryCode countryName } sector { sectorCode sectorName } payTransparencyPct payTransparencyPct3Ma } ... on HiringLabRegionalPayTransparency { id date country { countryCode countryName } region { regionCode regionName } geography { geography } payTransparencyPct payTransparencyPct3Ma } } }}Variables
{ "first": 50, "after": "Generated Argument example for findHiringLabPayTransparencyPublic after", "input": FindHiringLabPayTransparencyPublicInput}Response
{ "data": { "findHiringLabPayTransparencyPublic": { "edges": [HiringLabPayTransparencyEdge], "pageInfo": PageInfo, "payTransparency": [ HiringLabNationalPayTransparency ] } }}