18 lines
226 B
GraphQL
18 lines
226 B
GraphQL
|
fragment CrmContacts on Issue {
|
||
|
id
|
||
|
customerRelationsContacts {
|
||
|
nodes {
|
||
|
id
|
||
|
firstName
|
||
|
lastName
|
||
|
email
|
||
|
phone
|
||
|
description
|
||
|
organization {
|
||
|
id
|
||
|
name
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|