Skip to main content

Salary

No description

type Salary {
salaryExpected: Money!
salaryStandardDeviation: Money!
nextSalaryPaymentExpectedDate: Date!
nextSalaryPaymentStandardDeviationInDays: Decimal!
confidence: Decimal!
frequency: SalaryFrequency!
previousSalaryPaymentDate: Date!
transactions(
filter: TransactionFilterInput
): SalaryTransactionConnection!
}

Fields

Salary.salaryExpected ● Money! non-null scalar

The expected amount of the next salary payment

Salary.salaryStandardDeviation ● Money! non-null scalar

The observed standard deviation of the salary

Salary.nextSalaryPaymentExpectedDate ● Date! non-null scalar

When we expect this user to next be paid

Salary.nextSalaryPaymentStandardDeviationInDays ● Decimal! non-null scalar

The observed standard deviation of nextSalaryPaymentExpectedDate in days.

Salary.confidence ● Decimal! non-null scalar

A number between 0-1.0 representing the confidence that the transactions that make up this salary correlate and that this is a reliable source of income

Salary.frequency ● SalaryFrequency! non-null enum

How often the user is paid this salary. To start off with, only a monthly cadence is supported

Salary.previousSalaryPaymentDate ● Date! non-null scalar

When this user was last paid this salary

Salary.transactions ● SalaryTransactionConnection! non-null object

The observed transactions that may be correlated with this salary

Salary.transactions.filter ● TransactionFilterInput input