fix(WEB-115): alter contact block to allow any version of multiple numbers and addresses
This commit is contained in:
@@ -1,4 +1,10 @@
|
||||
fragment Contact on ContactBlock {
|
||||
fragment ContactExtraInfo on ContactBlockSectionsExtraInfo {
|
||||
extra_info {
|
||||
text
|
||||
}
|
||||
}
|
||||
|
||||
fragment ContactMailingAddress on ContactBlockSectionsMailingAddress {
|
||||
mailing_address {
|
||||
city
|
||||
country
|
||||
@@ -6,15 +12,22 @@ fragment Contact on ContactBlock {
|
||||
street
|
||||
zip
|
||||
}
|
||||
system {
|
||||
uid
|
||||
locale
|
||||
}
|
||||
}
|
||||
|
||||
fragment ContactPhone on ContactBlockSectionsPhone {
|
||||
phone {
|
||||
number
|
||||
title
|
||||
}
|
||||
title
|
||||
}
|
||||
|
||||
fragment ContactTitle on ContactBlockSectionsTitle {
|
||||
title {
|
||||
text
|
||||
}
|
||||
}
|
||||
|
||||
fragment ContactVisitingAddress on ContactBlockSectionsVisitingAddress {
|
||||
visiting_address {
|
||||
city
|
||||
country
|
||||
@@ -22,3 +35,18 @@ fragment Contact on ContactBlock {
|
||||
zip
|
||||
}
|
||||
}
|
||||
|
||||
fragment Contact on ContactBlock {
|
||||
sections {
|
||||
__typename
|
||||
...ContactExtraInfo
|
||||
...ContactMailingAddress
|
||||
...ContactPhone
|
||||
...ContactTitle
|
||||
...ContactVisitingAddress
|
||||
}
|
||||
system {
|
||||
locale
|
||||
uid
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user