candidate
QUERY

The candidate for the given id.This will include the candidate's personal details along with all application profiles for a single hirer.

Arguments

Name
Description
The value of Candidate.documentId for the requested object.

Result

Name
Description
A person who applied for a position at a company.If the same person applies to multiple hirers they will have distinct Candidate objects created.

Sample

GraphQL
query ($id: String!) {
  candidate(id: $id) {
    documentId {
      value
    }
    seekPrimaryEmailAddress
  }
}