inferLocation
QUERY

A location inferred from the provided address details.SEEK will attempt to match the address details to a location in our hierarchy on a best-effort basis.This query accepts browser tokens that include the query:ontologies scope.

Arguments

Name
Description
The address details to infer a SEEK location from.
schemeId* 
String!
The scheme ID of the location dataset to query.Currently, only seekAnz and seekAnzPublicTest are supported.
hirerId 
String
The identifier for the HiringOrganization used to provide location suggestions weighted by the hirer's SEEK-configured domicile.

Result

Name
Description
A physical location with a persistent identifier.

Sample

GraphQL
query ($address: SeekPositionAddressInput!, $schemeId: String!) {
  inferLocation(address: $address, schemeId: $schemeId) {
    id {
      value
    }
  }
}