Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com> Co-authored-by: Félix Malfait <felix.malfait@gmail.com> Co-authored-by: Félix Malfait <felix@twenty.com>
33 lines
581 B
TypeScript
33 lines
581 B
TypeScript
import gql from 'graphql-tag';
|
|
|
|
export const GET_CONNECTED_IMAP_SMTP_CALDAV_ACCOUNT = gql`
|
|
query GetConnectedImapSmtpCaldavAccount($id: String!) {
|
|
getConnectedImapSmtpCaldavAccount(id: $id) {
|
|
id
|
|
handle
|
|
provider
|
|
accountOwnerId
|
|
connectionParameters {
|
|
IMAP {
|
|
host
|
|
port
|
|
secure
|
|
password
|
|
}
|
|
SMTP {
|
|
host
|
|
port
|
|
secure
|
|
password
|
|
}
|
|
CALDAV {
|
|
host
|
|
port
|
|
secure
|
|
password
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`;
|