findHiringLabRemotePublic
Get publicly available remote job postings data.
Arguments
first Int default:50
after String
input FindHiringLabRemotePublicInput! Required
filter FindHiringLabRemoteFilterInput! Required
country [CountryCode!]! Required
Country codes where the job postings are located.
sector [String!]
Sector names to filter by.
metric RemoteMetric default:POSTINGS
Remote share metric type: POSTINGS or SEARCHES.
Response
Returns FindHiringLabRemotePublicConnection .edges [HiringLabRemoteEdge!]! Non-Null
node HiringLabRemoteData! 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
remote [HiringLabRemoteData]! Non-Null
Example
Query
query FindHiringLabRemotePublic( $first: Int, $after: String, $input: FindHiringLabRemotePublicInput!) { findHiringLabRemotePublic( first: $first, after: $after, input: $input ) { edges { node { ... on HiringLabNationalRemote { id date country { countryCode countryName } metric remoteShare } ... on HiringLabSectoralRemote { id date country { countryCode countryName } sector { sectorCode sectorName } metric remoteShare } } cursor } pageInfo { endCursor hasNextPage hasPreviousPage startCursor } remote { ... on HiringLabNationalRemote { id date country { countryCode countryName } metric remoteShare } ... on HiringLabSectoralRemote { id date country { countryCode countryName } sector { sectorCode sectorName } metric remoteShare } } }}Variables
{ "first": 50, "after": "Generated Argument example for findHiringLabRemotePublic after", "input": FindHiringLabRemotePublicInput}Response
{ "data": { "findHiringLabRemotePublic": { "edges": [HiringLabRemoteEdge], "pageInfo": PageInfo, "remote": [HiringLabNationalRemote] } }}