OBJECT

FreelanceProject

link GraphQL Schema definition

1type FreelanceProject {
2
3creator: User
4
5currency: String!
6
7deliveryDate: Int!
8
9description: String!
10
11hirer: User
12
13history: [FreelanceProjectHistory]!
14
15id: Int!
16
17modifiedOn: Int!
18
19paymentPlan: FreelanceProjectPaymentPlan
20
21payments: [FreelancePayment]
22
23status: FreelanceProjectStatus!
24
25title: String!
26
27unitAmount: Float!
28
29upfrontPercent: Int!
30
31}