Bid
No description
type Bid implements IncomingRequest {
_id: ObjectId!
order: Order!
type: IncomingRequestType!
requestingCompany: ObjectId!
company: ObjectId!
requestingUser: ContactInfo!
receivingUser: ContactInfo
archived: Boolean!
deleted: Boolean!
sourceSystem: SystemEnum!
createdAt: DateTime!
updatedAt: DateTime!
needsAttention: NeedsAttention
companyName: String!
status: EnumBidStatus!
amount: Float
expiresAt: DateTime
comment: String
}
Fields
Bid._id
● ObjectId!
non-null scalar
Bid.order
● Order!
non-null object
Bid.type
● IncomingRequestType!
non-null enum
Bid.requestingCompany
● ObjectId!
non-null scalar
Bid.company
● ObjectId!
non-null scalar
The company which received the request.
Bid.requestingUser
● ContactInfo!
non-null object
The user that made the request.
Bid.receivingUser
● ContactInfo
object
The user that received the shared order, or accepted/declined the takeover.