11 lines
179 B
GraphQL
11 lines
179 B
GraphQL
mutation CreateReferral($input: CreateReferralInput!) {
|
|
createReferral(input: $input) {
|
|
id
|
|
referrerId
|
|
refereeId
|
|
createdById
|
|
bonusPercent
|
|
createdAt
|
|
}
|
|
}
|