OBJECT
InboxThread
link GraphQL Schema definition
1 type InboxThread { 2 3 : Boolean! 4 5 : Int! 6 7 : Int! 8 9 (: String, : Int): InboxFileAttachmentConnection 10 11 : String! 12 13 : Boolean! 14 15 : 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. 19 : MeetingEligibility! 20 21 # Arguments 22 # usePlaceholderForJobApplications: When true this will provide a 23 # default message for job applications without user created messages 24 ( 25 : String, 26 : Int, 27 : Boolean 28 ): InboxThreadMessageConnection 29 30 : Int! 31 32 : [User]! 33 34 : Int! 35 36 }