// @flow import gql from 'graphql-tag'; import channelInfoFragment from '../../fragments/channel/channelInfo'; import type { ChannelInfoType } from '../../fragments/channel/channelInfo'; type Edge = { node: { ...$Exact, }, }; export type CommunityChannelConnectionType = { channelConnection: { edges: Array, }, }; export default gql` fragment communityChannelConnection on Community { channelConnection { edges { node { ...channelInfo } } } } ${channelInfoFragment} `;