Automate > Documentation > Basics - Blocks > Content > Calendar event query


Calendar event query

  • decision block that search for, or await calendar events.
  • 即時実行された場合は、現在実施中のイベントが無いか、最小タイムスタンプと最大タイムスタンプの交わるイベントが無いか、fiberを止めることなくチェックする
  • If proceed is set to When transition, then the fiber will pause until an upcoming event has begun and proceed through the YES path, or an ongoing event has ended and proceed through the NO path.

The start offset and end offset can be used to match events before (negative offset) or after (positive offset) the time they’re actually starting and/or ending.

Use the Calendar event get block to get the details of an event.

Input arguments

  • Calendar URI — カレンダーのURI、デフォルトでは表示中のカレンダーすべて。
  • Minimum timestamp : UNIXタイムスタンプ値。 timestamp of the earliest events to match
    • デフォルトは現在時刻(Immediately の場合)
  • Maximum timestamp — unix timestamp of the latest events to match
    • デフォルトは現在時刻(Immediately の場合)
  • Start offset : 開始時刻に加えるオフセット(秒)
    • default is 0.
  • End offset — offset in seconds, added the event end time when matching
    • default is 0.
  • Title — title of events to match, default is any title, may contain glob pattern.
  • Description — description of events to match, default is any description, may contain glob pattern.
  • Location name — location of events to match,
    • デフォルトはすべての場所
    • may contain glob pattern.
  • Availability — availabilities of events, default is any availability.
  • All day — 終日のイベントを無視するか?

Output variables

  • Event URIs — variable to assign the URIs of the intersecting or transitioning events.
最終更新:2019年01月06日 10:44