import { gql } from "graphql-request"; export const getTicketArticlesQuery = gql` query getTicketArticles($ticketId: ID!) { ticketArticles(ticket: { ticketId: $ticketId }) { edges { node { id bodyWithUrls contentType internal type { name } sender { name } from { parsed { emailAddress } } } } } } `;