ChannelFragment
Reusable GraphQL fragment. It concatenates LocalizedStringFragment, AddressFragment and DefaultChannelFragment
ChannelFragment = "\n \n fragment LocalizedStringFragment on LocalizedString {\n value\n locale\n }\n\n\n \n fragment DefaultAddress on Address {\n id\n title\n firstName\n lastName\n streetName\n streetNumber\n postalCode\n city\n country\n state\n region\n company\n apartment\n phone\n mobile\n salutation\n }\n\n\n \n fragment ChannelFragment on Channel {\n id\n version\n key\n roles\n name(
locale: $locale
)\n description(locale: $locale)\n nameAllLocales {\n ...LocalizedStringFragment\n }\n descriptionAllLocales {\n ...LocalizedStringFragment\n }\n address {\n ...DefaultAddress\n }\n }\n\n"