import gql from 'graphql-tag';

export const connectionFragment = gql`
  fragment ConnectionFragment on SubscriptionConnection {
    id
    subscriptionId
    isActive
    type
  }
`;
