getOnSiteJobsAccountsByPostcode
Get On-Site Jobs accounts for the properties at a given postcode.
Arguments
The postcode to search for.
Possible Errors
Allowed Viewers
Query Complexity
1Examples
The example data in the variables and responses below are autogenerated values designed to resemble real inputs. They do not represent actual customer data, and in some cases may require additional validation.
query GetOnSiteJobsAccountsByPostcode(
$after: String,
$before: String,
$first: Int,
$last: Int,
$postcode: NonEmptyString!
) {
getOnSiteJobsAccountsByPostcode(
after: $after,
before: $before,
first: $first,
last: $last,
postcode: $postcode
) {
edgeCount
edges {
...OnSiteJobsAccountConnectionTypeEdgeFragment
}
pageInfo {
...PageInfoFragment
}
totalCount
}
}
Variables
{
"after": "YXJyYXljb25uZWN0aW9uOjEw=",
"before": "YXJyYXljb25uZWN0aW9uOjEw=",
"first": 10,
"last": 10,
"postcode": "card-outside-body-drive-today"
}
Response
{
"data": {
"getOnSiteJobsAccountsByPostcode": {
"edgeCount": 36,
"edges": [OnSiteJobsAccountConnectionTypeEdge],
"pageInfo": PageInfo,
"totalCount": 70
}
}
}