findHiringLabRemotePublic
公開されているリモート求人データを取得します。
引数
first Int default:50
after String
input FindHiringLabRemotePublicInput! 必須
filter FindHiringLabRemoteFilterInput! 必須
country [CountryCode!]! 必須
求人が掲載されている国の国コードです。
sector [String!]
フィルタリングするセクター名です。
metric RemoteMetric default:POSTINGS
リモートシェアの指標タイプ:求人掲載数(POSTINGS)または検索数(SEARCHES)です。
応答
FindHiringLabRemotePublicConnection を返す。edges [HiringLabRemoteEdge!]! 非null
node HiringLabRemoteData! 非null
cursor String! 非null
pageInfo PageInfo! 非null
remote [HiringLabRemoteData]! 非null
例
クエリ
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 } } }}変数
{ "first": 50, "after": "Generated Argument example for findHiringLabRemotePublic after", "input": FindHiringLabRemotePublicInput}応答
{ "data": { "findHiringLabRemotePublic": { "edges": [HiringLabRemoteEdge], "pageInfo": PageInfo, "remote": [HiringLabNationalRemote] } }}