OBJECT

Allocation

Allocation of the Assignar platform.

link GraphQL Schema definition

  • type Allocation {
  • # Unique allocation ID.
  • id: Int!
  • # The date for this allocation.
  • date: DateExpression!
  • # The start time.
  • start_time: TimeExpression!
  • # The date and time the allocation starts.
  • start_datetime: DateTimeExpression!
  • # The end time. If this time is smaller than start_time, it means the allocation
  • # ends on the next day.
  • end_time: TimeExpression!
  • # The date and time the allocation ends.
  • end_datetime: DateTimeExpression!
  • # Timezone free timestamp for allocation check in.
  • check_in_time: DateTimeExpression
  • # Timezone free timestamp for allocation check out.
  • check_out_time: DateTimeExpression
  • # The signature file payload.
  • signature: String
  • # The comments on the allocation.
  • comments: String
  • # Primary geolocation of the allocation
  • check_in_geolocation: Geolocation
  • # Secondary geolocation of the order
  • check_out_geolocation: Geolocation
  • # Timezone free timestamp for allocation check out.
  • modified_time: DateTime
  • # Whether the allocatee has been notified via the messenging system.
  • notified: Boolean!
  • # Status of the allocation.
  • status: OrderStatus
  • # Status of the allocation. Note the duplication is to prevent a breaking change.
  • allocation_status: AllocationStatus
  • # The assets attached to the allocation the user is assigned to
  • my_assets: [AllocationAsset]
  • # Assets being used by everyone on this order
  • all_assets: [AllocationAsset]
  • # The asset for the allocation (null if for user)
  • asset: Asset
  • # JSON representation of all asset_attachments for the underlying resource
  • asset_attachments: UntypedValue
  • # The user assigned to this resource.
  • user: User
  • # The timesheet associated with this allocation.
  • timesheet: Timesheet
  • # Your current results for this allocation
  • my_form_results: [FormResult]
  • # All form results for the current order
  • all_form_results: [FormResult]
  • # The order task the allocation is assigned to.
  • order_task: OrderTask
  • # The order the allocation is linked to.
  • order: Order
  • # The allocations on the same order on the same day.
  • my_team: [Allocation]
  • }