OBJECT
Payments
link GraphQL Schema definition
1 type Payments { 2 3 (: Int!): Invoice 4 5 (: String, : Int): FreelancePaymentConnection 6 7 # The total earnings in USD from the logged in user's freelance projects 8 # 9 # Arguments 10 # daysAgo: Filter total earnings in the past X days 11 (: Int): String! 12 13 # Arguments 14 # projectAmount: Amount billed by creative 15 # upfrontPercent: Percentage required to be paid upfront 16 ( 17 : Int!, 18 : Int! 19 ): FreelanceProjectPaymentPlan 20 21 (: Int!): Invoice 22 23 }