Skip to main content

MeetingParticipant

No description

type MeetingParticipant implements Node {
nodeId: ID!
id: String!
workspaceId: String!
meetingId: String!
name: String
email: String
companyName: String
isHostCompany: Boolean
providerUserId: String
workspaceAccountId: String
deletedAt: Datetime
createdAt: Datetime!
isHost: Boolean
workspace: Workspace
meeting: Meeting
workspaceAccount: WorkspaceAccount
}

Fields

MeetingParticipant.nodeId ● ID! non-null scalar

A globally unique identifier. Can be used in various places throughout the system to identify this single value.

MeetingParticipant.id ● String! non-null scalar

MeetingParticipant.workspaceId ● String! non-null scalar

MeetingParticipant.meetingId ● String! non-null scalar

MeetingParticipant.name ● String scalar

MeetingParticipant.email ● String scalar

MeetingParticipant.companyName ● String scalar

MeetingParticipant.isHostCompany ● Boolean scalar

MeetingParticipant.providerUserId ● String scalar

MeetingParticipant.workspaceAccountId ● String scalar

MeetingParticipant.deletedAt ● Datetime scalar

MeetingParticipant.createdAt ● Datetime! non-null scalar

MeetingParticipant.isHost ● Boolean scalar

MeetingParticipant.workspace ● Workspace object

Reads a single Workspace that is related to this MeetingParticipant.

MeetingParticipant.meeting ● Meeting object

Reads a single Meeting that is related to this MeetingParticipant.

MeetingParticipant.workspaceAccount ● WorkspaceAccount object

Reads a single WorkspaceAccount that is related to this MeetingParticipant.

Interfaces

Node interface

An object with a globally unique ID.

Returned By

meetingParticipant query ● meetingParticipantByNodeId query ● meetingParticipants query

Member Of

CreateMeetingParticipantPayload object ● DeleteMeetingParticipantPayload object ● Meeting object ● MeetingParticipantsConnection object ● MeetingParticipantsEdge object ● UpdateMeetingParticipantPayload object ● Workspace object ● WorkspaceAccount object