createOrUpdateCalendar

Creates a new calendar.

createOrUpdateCalendar( calendarId: String timeZoneOffset: String = "Z" ): Calendar

Arguments#


calendarId
Note: optional if don't pass one a random one will be generated

timeZoneOffset
Note: current;y a placeholder for this feature.
UTC by default.
Examples: [ Z | -08:00 ]

Type#

Calendar#

Example#

This will create a new calendar and assign a random unique id to it.

mutation{
createOrUpdateCalendar(calendarId:""){
id
}
}