Update GraphQL queries: companyTeaserByProfile → kycProfileTeaser
Some checks failed
Build Docker Image / build (push) Failing after 1m59s
Some checks failed
Build Docker Image / build (push) Failing after 1m59s
This commit is contained in:
@@ -44,7 +44,7 @@ const loadCompanyData = async () => {
|
|||||||
'public',
|
'public',
|
||||||
'kyc'
|
'kyc'
|
||||||
)
|
)
|
||||||
companyData.value = data?.companyTeaserByProfile || null
|
companyData.value = data?.kycProfileTeaser || null
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error('Error loading company data:', error)
|
console.error('Error loading company data:', error)
|
||||||
} finally {
|
} finally {
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
query GetKycProfileFull($profileUuid: String!) {
|
query GetKycProfileFull($profileUuid: String!) {
|
||||||
companyFullByProfile(profileUuid: $profileUuid) {
|
kycProfileFull(profileUuid: $profileUuid) {
|
||||||
inn
|
inn
|
||||||
ogrn
|
ogrn
|
||||||
name
|
name
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
query GetKycProfileTeaser($profileUuid: String!) {
|
query GetKycProfileTeaser($profileUuid: String!) {
|
||||||
companyTeaserByProfile(profileUuid: $profileUuid) {
|
kycProfileTeaser(profileUuid: $profileUuid) {
|
||||||
companyType
|
companyType
|
||||||
registrationYear
|
registrationYear
|
||||||
isActive
|
isActive
|
||||||
|
|||||||
Reference in New Issue
Block a user