Open jamesmarkus opened 4 years ago
The default filter used when calendars are loaded is
[{
type: 'comp-filter',
attrs: { name: 'VCALENDAR' },
children: [{
type: 'comp-filter',
attrs: { name: 'VEVENT' }
}]
}]
I successfully loaded only VTODO objects using this filter in parameter of createAccount
:
[{
type: 'comp-filter',
attrs: { name: 'VTODO' },
}]
I'm able to successfully load calendar event object with the loadObjects flag, but nothing turns up when querying a "task calendar".
Is there anyway to fetch VTODO objects?