Skip to main content
The MeetingState enum specifies the current state of an active meeting.

Values

active
Enum Value
The meeting is currently in progress with the Fireflies bot actively recording.
paused
Enum Value
The meeting has been paused. The Fireflies bot is still in the meeting but recording is temporarily stopped.

Usage

The MeetingState enum is used in two contexts:
  1. As a filter in the GetActiveMeetingsInput to filter meetings by state
  2. As a response field in the ActiveMeeting type to indicate the current state

Filtering by State

query ActiveMeetings {
  active_meetings(input: { states: [active] }) {
    id
    title
    state
  }
}

Getting All States (Default)

When no states filter is provided, both active and paused meetings are returned:
query ActiveMeetings {
  active_meetings {
    id
    title
    state
  }
}