Meeting
No description
type Meeting implements Node {
nodeId: ID!
id: String!
workspaceId: String!
provider: String!
providerCallId: String!
providerUrl: String
title: String
startedAt: Datetime
duration: Int
callMetadata: JSON
suggestedAccordId: String
suggestedAccordConfidence: Float
version: Int!
deletedAt: Datetime
updatedAt: Datetime!
createdAt: Datetime!
summary: String
workspace: Workspace
suggestedAccord: Accord
meetingAccordsConnection(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [MeetingAccordsOrderBy!] = [PRIMARY_KEY_ASC]
condition: MeetingAccordCondition
filter: MeetingAccordFilter
): MeetingAccordsConnection!
meetingAccords(
first: Int
offset: Int
orderBy: [MeetingAccordsOrderBy!]
condition: MeetingAccordCondition
filter: MeetingAccordFilter
): [MeetingAccord!]!
meetingParticipantsConnection(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [MeetingParticipantsOrderBy!] = [PRIMARY_KEY_ASC]
condition: MeetingParticipantCondition
filter: MeetingParticipantFilter
): MeetingParticipantsConnection!
meetingParticipants(
first: Int
offset: Int
orderBy: [MeetingParticipantsOrderBy!]
condition: MeetingParticipantCondition
filter: MeetingParticipantFilter
): [MeetingParticipant!]!
}
Fields
Meeting.nodeId ● ID! non-null scalar
A globally unique identifier. Can be used in various places throughout the system to identify this single value.
Meeting.id ● String! non-null scalar
Meeting.workspaceId ● String! non-null scalar
Meeting.provider ● String! non-null scalar
Meeting.providerCallId ● String! non-null scalar
Meeting.providerUrl ● String scalar
Meeting.title ● String scalar
Meeting.startedAt ● Datetime scalar
Meeting.duration ● Int scalar
Meeting.callMetadata ● JSON scalar
Meeting.suggestedAccordId ● String scalar
Meeting.suggestedAccordConfidence ● Float scalar
Meeting.version ● Int! non-null scalar
Meeting.deletedAt ● Datetime scalar
Meeting.updatedAt ● Datetime! non-null scalar
Meeting.createdAt ● Datetime! non-null scalar
Meeting.summary ● String scalar
Meeting.workspace ● Workspace object
Reads a single Workspace that is related to this Meeting.
Meeting.suggestedAccord ● Accord object
Reads a single Accord that is related to this Meeting.
Meeting.meetingAccordsConnection ● MeetingAccordsConnection! non-null object
Reads and enables pagination through a set of MeetingAccord.
Meeting.meetingAccordsConnection.first ● Int scalar
Only read the first n values of the set.
Meeting.meetingAccordsConnection.last ● Int scalar
Only read the last n values of the set.
Meeting.meetingAccordsConnection.offset ● Int scalar
Skip the first n values from our after cursor, an alternative to cursor
based pagination. May not be used with last.
Meeting.meetingAccordsConnection.before ● Cursor scalar
Read all values in the set before (above) this cursor.
Meeting.meetingAccordsConnection.after ● Cursor scalar
Read all values in the set after (below) this cursor.
Meeting.meetingAccordsConnection.orderBy ● [MeetingAccordsOrderBy!] list enum
The method to use when ordering MeetingAccord.
Meeting.meetingAccordsConnection.condition ● MeetingAccordCondition input
A condition to be used in determining which values should be returned by the collection.
Meeting.meetingAccordsConnection.filter ● MeetingAccordFilter input
A filter to be used in determining which values should be returned by the collection.
Meeting.meetingAccords ● [MeetingAccord!]! non-null object
Reads and enables pagination through a set of MeetingAccord.
Meeting.meetingAccords.first ● Int scalar
Only read the first n values of the set.
Meeting.meetingAccords.offset ● Int scalar
Skip the first n values.
Meeting.meetingAccords.orderBy ● [MeetingAccordsOrderBy!] list enum
The method to use when ordering MeetingAccord.
Meeting.meetingAccords.condition ● MeetingAccordCondition input
A condition to be used in determining which values should be returned by the collection.
Meeting.meetingAccords.filter ● MeetingAccordFilter input
A filter to be used in determining which values should be returned by the collection.
Meeting.meetingParticipantsConnection ● MeetingParticipantsConnection! non-null object
Reads and enables pagination through a set of MeetingParticipant.
Meeting.meetingParticipantsConnection.first ● Int scalar
Only read the first n values of the set.
Meeting.meetingParticipantsConnection.last ● Int scalar
Only read the last n values of the set.
Meeting.meetingParticipantsConnection.offset ● Int scalar
Skip the first n values from our after cursor, an alternative to cursor
based pagination. May not be used with last.
Meeting.meetingParticipantsConnection.before ● Cursor scalar
Read all values in the set before (above) this cursor.
Meeting.meetingParticipantsConnection.after ● Cursor scalar
Read all values in the set after (below) this cursor.
Meeting.meetingParticipantsConnection.orderBy ● [MeetingParticipantsOrderBy!] list enum
The method to use when ordering MeetingParticipant.
Meeting.meetingParticipantsConnection.condition ● MeetingParticipantCondition input
A condition to be used in determining which values should be returned by the collection.
Meeting.meetingParticipantsConnection.filter ● MeetingParticipantFilter input
A filter to be used in determining which values should be returned by the collection.
Meeting.meetingParticipants ● [MeetingParticipant!]! non-null object
Reads and enables pagination through a set of MeetingParticipant.
Meeting.meetingParticipants.first ● Int scalar
Only read the first n values of the set.
Meeting.meetingParticipants.offset ● Int scalar
Skip the first n values.
Meeting.meetingParticipants.orderBy ● [MeetingParticipantsOrderBy!] list enum
The method to use when ordering MeetingParticipant.
Meeting.meetingParticipants.condition ● MeetingParticipantCondition input
A condition to be used in determining which values should be returned by the collection.
Meeting.meetingParticipants.filter ● MeetingParticipantFilter input
A filter to be used in determining which values should be returned by the collection.
Interfaces
Node interface
An object with a globally unique ID.
Returned By
meeting query ● meetingByNodeId query ● meetings query
Member Of
Accord object ● CreateMeetingAccordPayload object ● CreateMeetingParticipantPayload object ● CreateMeetingPayload object ● DeleteMeetingAccordPayload object ● DeleteMeetingDataPayload object ● DeleteMeetingParticipantPayload object ● DeleteMeetingPayload object ● MeetingAccord object ● MeetingParticipant object ● MeetingsConnection object ● MeetingsEdge object ● RecoverMeetingPayload object ● UpdateMeetingAccordPayload object ● UpdateMeetingParticipantPayload object ● UpdateMeetingPayload object ● Workspace object