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 |
|---|---|
SeekPositionAddressInput! | The address details to infer a SEEK location from. |
String! | The scheme ID of the location dataset to query.Currently, only seekAnz and seekAnzPublicTest are supported. |
String | The identifier for the HiringOrganization used to provide location suggestions weighted by the hirer's SEEK-configured domicile. |
Result
| Name | Description |
|---|---|
Location | A physical location with a persistent identifier. |
Sample
GraphQL
CopyGraphQL Explorer
query ($address: SeekPositionAddressInput!, $schemeId: String!) {
inferLocation(address: $address, schemeId: $schemeId) {
id {
value
}
}
}