OBJECT

JobItem

link GraphQL Schema definition

1type JobItem {
2
3allowedApplyPlace: JobAllowedApplyPlace!
4
5applicationUrl: String
6
7applicationsCount: Int!
8
9appliedOn: Int
10
11archivedOn: Int!
12
13company: JobCompany
14
15companyType: JobCompanyType!
16
17createdOn: Int!
18
19creativeFields: [CreativeField!]!
20
21creator: User
22
23description: String
24
25expiresOn: Int!
26
27hasApplied: Boolean!
28
29id: Int!
30
31isApplicantShortlisted: Boolean!
32
33isExpired: Boolean!
34
35isOwner: Boolean!
36
37isPosted: Boolean!
38
39isSaved: Boolean!
40
41jobStatus: JobStatus!
42
43jobType: JobType
44
45location: JobLocation
46
47locationDisplay: String!
48
49modifiedOn: Int!
50
51postedOn: Int!
52
53remoteStatus: JobRemoteStatus!
54
55shortDescription: String
56
57slug: String!
58
59tags: [Tag!]!
60
61title: String!
62
63url: String!
64
65}