Query
query MyEmailSignature {
myEmailSignature {
text
markdown
createdAt {
unixTimestamp
iso8601
}
createdBy {
__typename
... on UserActor {
userId
user {
__typename
}
}
}
updatedAt {
unixTimestamp
iso8601
}
updatedBy {
__typename
... on UserActor {
userId
user {
__typename
}
}
}
}
}Response
{
"data": {
"myEmailSignature": {
"text": "string",
"markdown": "string",
"createdAt": {
"unixTimestamp": "string",
"iso8601": "string"
},
"createdBy": {
"__typename": "UserActor",
"userId": "id",
"user": {
"__typename": "User"
}
},
"updatedAt": {
"unixTimestamp": "string",
"iso8601": "string"
},
"updatedBy": {
"__typename": "UserActor",
"userId": "id",
"user": {
"__typename": "User"
}
}
}
}
}Queries
myEmailSignature
Returns the email signature configured for the currently authenticated user, or null if none has been set.
QUERY
myEmailSignature: EmailSignatureReturns
text
String!
The plain-text version of the email signature.
markdown
String
The markdown-formatted version of the email signature, if provided.
createdAt
createdBy
updatedAt
updatedBy
Query
query MyEmailSignature {
myEmailSignature {
text
markdown
createdAt {
unixTimestamp
iso8601
}
createdBy {
__typename
... on UserActor {
userId
user {
__typename
}
}
}
updatedAt {
unixTimestamp
iso8601
}
updatedBy {
__typename
... on UserActor {
userId
user {
__typename
}
}
}
}
}Response
{
"data": {
"myEmailSignature": {
"text": "string",
"markdown": "string",
"createdAt": {
"unixTimestamp": "string",
"iso8601": "string"
},
"createdBy": {
"__typename": "UserActor",
"userId": "id",
"user": {
"__typename": "User"
}
},
"updatedAt": {
"unixTimestamp": "string",
"iso8601": "string"
},
"updatedBy": {
"__typename": "UserActor",
"userId": "id",
"user": {
"__typename": "User"
}
}
}
}
}Was this page helpful?

