Skip to main content

CreateMeetingParticipantPayload

The output of our create MeetingParticipant mutation.

type CreateMeetingParticipantPayload {
clientMutationId: String
meetingParticipant: MeetingParticipant
query: Query
workspace: Workspace
meeting: Meeting
workspaceAccount: WorkspaceAccount
meetingParticipantEdge(
orderBy: [MeetingParticipantsOrderBy!] = [PRIMARY_KEY_ASC]
): MeetingParticipantsEdge
}

Fields

CreateMeetingParticipantPayload.clientMutationId ● String scalar

The exact same clientMutationId that was provided in the mutation input, unchanged and unused. May be used by a client to track mutations.

CreateMeetingParticipantPayload.meetingParticipant ● MeetingParticipant object

The MeetingParticipant that was created by this mutation.

CreateMeetingParticipantPayload.query ● Query object

Our root query field type. Allows us to run any query from our mutation payload.

CreateMeetingParticipantPayload.workspace ● Workspace object

Reads a single Workspace that is related to this MeetingParticipant.

CreateMeetingParticipantPayload.meeting ● Meeting object

Reads a single Meeting that is related to this MeetingParticipant.

CreateMeetingParticipantPayload.workspaceAccount ● WorkspaceAccount object

Reads a single WorkspaceAccount that is related to this MeetingParticipant.

CreateMeetingParticipantPayload.meetingParticipantEdge ● MeetingParticipantsEdge object

An edge for our MeetingParticipant. May be used by Relay 1.

CreateMeetingParticipantPayload.meetingParticipantEdge.orderBy ● [MeetingParticipantsOrderBy!] list enum

The method to use when ordering MeetingParticipant.

Returned By

createMeetingParticipant mutation