OBJECT

InboxThread

link GraphQL Schema definition

1type InboxThread {
2
3containsInquiry: Boolean!
4
5createdOn: Int!
6
7fileAttachmentCount: Int!
8
9fileAttachments(after: String, first: Int): InboxFileAttachmentConnection
10
11id: String!
12
13isJob: Boolean!
14
15isShortlistedForJob: Boolean!
16
17# Intended for single thread queries, do not use for lists of threads. Returns
18# whether the current thread is eligible for video meetings.
19meetingEligibility: MeetingEligibility!
20
21# Arguments
22# usePlaceholderForJobApplications: When true this will provide a
23# default message for job applications without user created messages
24messages(
25after: String,
26first: Int,
27usePlaceholderForJobApplications: Boolean
28): InboxThreadMessageConnection
29
30modifiedOn: Int!
31
32recipients: [User]!
33
34unreadCount: Int!
35
36}