Skip to main content
The getBookmarkedCalendarEvents query works exactly like the standard calendar events query, but returns only calendar events that have been bookmarked by the current user.

Calendar Events Documentation

For complete documentation on parameters, filtering, pagination, and response structure, see the Calendar Events documentation

Key Difference

The only difference between getBookmarkedCalendarEvents and getCalendarEvents is that this query automatically filters results to show only bookmarked events for the authenticated user.

Basic Usage

query getBookmarkedCalendarEvents($fromDate: DateTime!) {
  getBookmarkedCalendarEvents(
    fromDate: $fromDate
    first: 10
  ) {
    edges {
      node {
        id
        title
        startDate
        endDate
        type
        description
      }
    }
    pageInfo {
      hasNextPage
      endCursor
    }
    totalCount
  }
}

Authentication Required

This query requires user authentication. Anonymous users will receive no results since bookmarks are user-specific.
I