Initial commit from monorepo
This commit is contained in:
11
graphql/operations/user/kyc/CreateKYCRequestRussia.graphql
Normal file
11
graphql/operations/user/kyc/CreateKYCRequestRussia.graphql
Normal file
@@ -0,0 +1,11 @@
|
||||
mutation CreateKYCRequestRussia($input: KYCRequestRussiaInput!) {
|
||||
createKycRequestRussia(input: $input) {
|
||||
success
|
||||
kycRequest {
|
||||
uuid
|
||||
contactEmail
|
||||
createdAt
|
||||
countryData
|
||||
}
|
||||
}
|
||||
}
|
||||
16
graphql/operations/user/kyc/GetKYCRequestRussia.graphql
Normal file
16
graphql/operations/user/kyc/GetKYCRequestRussia.graphql
Normal file
@@ -0,0 +1,16 @@
|
||||
query GetKYCRequestRussia($uuid: String!) {
|
||||
kycRequest(uuid: $uuid) {
|
||||
uuid
|
||||
userId
|
||||
teamName
|
||||
countryCode
|
||||
contactPerson
|
||||
contactEmail
|
||||
contactPhone
|
||||
approvedBy
|
||||
approvedAt
|
||||
createdAt
|
||||
updatedAt
|
||||
countryData
|
||||
}
|
||||
}
|
||||
16
graphql/operations/user/kyc/GetKYCRequestsRussia.graphql
Normal file
16
graphql/operations/user/kyc/GetKYCRequestsRussia.graphql
Normal file
@@ -0,0 +1,16 @@
|
||||
query GetKYCRequestsRussia {
|
||||
kycRequests {
|
||||
uuid
|
||||
userId
|
||||
teamName
|
||||
countryCode
|
||||
contactPerson
|
||||
contactEmail
|
||||
contactPhone
|
||||
approvedBy
|
||||
approvedAt
|
||||
createdAt
|
||||
updatedAt
|
||||
countryData
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user