Revert gql * Revert "Merged in fix/system-fragment (pull request #3102)" This reverts commit0d479eb337. * Revert "Merged in chore/replace-graphql-tag/loader (pull request #3096)" This reverts commite9bd159e98.
53 lines
776 B
GraphQL
53 lines
776 B
GraphQL
fragment ContactExtraInfo on ContactBlockSectionsExtraInfo {
|
|
extra_info {
|
|
text
|
|
}
|
|
}
|
|
|
|
fragment ContactMailingAddress on ContactBlockSectionsMailingAddress {
|
|
mailing_address {
|
|
city
|
|
country
|
|
name
|
|
street
|
|
zip
|
|
}
|
|
}
|
|
|
|
fragment ContactPhone on ContactBlockSectionsPhone {
|
|
phone {
|
|
number
|
|
title
|
|
}
|
|
}
|
|
|
|
fragment ContactTitle on ContactBlockSectionsTitle {
|
|
title {
|
|
text
|
|
}
|
|
}
|
|
|
|
fragment ContactVisitingAddress on ContactBlockSectionsVisitingAddress {
|
|
visiting_address {
|
|
city
|
|
country
|
|
street
|
|
zip
|
|
}
|
|
}
|
|
|
|
fragment Contact on ContactBlock {
|
|
sections {
|
|
__typename
|
|
...ContactExtraInfo
|
|
...ContactMailingAddress
|
|
...ContactPhone
|
|
...ContactTitle
|
|
...ContactVisitingAddress
|
|
}
|
|
system {
|
|
locale
|
|
uid
|
|
}
|
|
}
|