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