OBJECT

Payments

link GraphQL Schema definition

1type Payments {
2
3freelancePaymentInvoice(id: Int!): Invoice
4
5freelancePayments(after: String, first: 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
11freelanceProjectEarnings(daysAgo: Int): String!
12
13# Arguments
14# projectAmount: Amount billed by creative
15# upfrontPercent: Percentage required to be paid upfront
16freelanceProjectPaymentPlan(
17projectAmount: Int!,
18upfrontPercent: Int!
19): FreelanceProjectPaymentPlan
20
21sourceFilePurchaseInvoice(purchaseId: Int!): Invoice
22
23}

link Required by