jobTitles
Overview
This query returns a list of all the valid job titles.
Special Considerations
- Query does not take in any argument as input
Inputs
N/A
Returns
Promise<[String]>
A promise containing the following object / data:
jobTitles: [string]
Example
Running this query:
query {
jobTitles
}
Gives us:
{
"data": {
"jobTitles": [
"Accountant",
"Accounts Manager",
"Accounts Payable Clerk",
...
"VP of Finance"
]
}
}
Common Errors
N/A