Skip to content

externalCalendars

Fetch paginated external calendars collection

Arguments

is_org · Boolean · When true, returns external calendars for all providers in the org
include_suborganizations · Boolean · include all providers in the organization and sub-organizations
after · String · Returns the elements in the list that come after the specified cursor.
before · String · Returns the elements in the list that come before the specified cursor.
first · Int · Returns the first _n_ elements from the list.
last · Int · Returns the last _n_ elements from the list.

Returns

ExternalCalendarConnection

Example

query externalCalendars(
$calendar_type: CalendarType
$calendar_status: CalendarStatus
$is_org: Boolean
$include_suborganizations: Boolean
$after: String
$before: String
$first: Int
$last: Int
) {
externalCalendars(
calendar_type: $calendar_type
calendar_status: $calendar_status
is_org: $is_org
include_suborganizations: $include_suborganizations
after: $after
before: $before
first: $first
last: $last
) {
edges
nodes
page_info
total_count
}
}