{{incident.raw\_services | get: '<attribute>'}}
Multi-select는 배열 구문을 따릅니다. 여기서 i는 서비스 목록에서 특정 서비스 객체를 참조합니다.{{incident.raw\_services\[i\] | get: '<attribute>'}}
{{ incident.services }}
또는
{{ incident.raw\_services | get: 'id'}}
select 필드 유형의 경우
{{ incident.raw\_services\[i\] | get: 'id' }}
multi-select 필드 유형의 경우
{{ incident.services }}
또는
{{ incident.raw\_services | get: 'name'}}
select 필드 유형의 경우
{{ incident.raw\_services\[i\] | get: 'name' }}
multi-select 필드 유형의 경우
{{ incident.service\_slugs }}
또는
{{ incident.raw\_services | get: 'slug'}}
select 필드 유형의 경우
{{ incident.raw\_services\[i\] | get: 'slug' }}
multi-select 필드 유형의 경우
{{ incident.raw\_services | get: 'description'}}
select 필드 유형의 경우
{{ incident.raw\_services\[i\] | get: 'description' }}
multi-select 필드 유형의 경우
{{ incident.raw\_services | get: 'color'}}
select 필드 유형의 경우
{{ incident.raw\_services\[i\] | get: 'color' }}
multi-select 필드 유형의 경우
{{ incident.raw\_services | get: 'slack\_channels'}}
select 필드 유형의 경우
{{ incident.raw\_services\[i\] | get: 'slack\_channels' }}
multi-select 필드 유형의 경우
{{ incident.raw\_services | get: 'slack\_aliases'}}
select 필드 유형의 경우
{{ incident.raw\_services\[i\] | get: 'slack\_aliases' }}
multi-select 필드 유형의 경우
{{ incident.raw\_services | map: 'notify\_emails' | flatten | join: ',' }}
로 명시적으로 지정해야 합니다.
다음 Liquid 구문을 사용하면 인시던트에 대해 선택된 서비스알림 이메일을 나열할 수 있습니다:
{{ incident.raw\_services | get: 'notify\_emails'}}
select 필드 유형의 경우
{{ incident.raw\_services\[i\] | get: 'notify\_emails' }}
multi-select 필드 유형의 경우
{{ incident.raw\_services | get: 'pagerduty\_id' }}
select 필드 유형의 경우
{{ incident.raw\_services\[0\] | get: 'pagerduty\_id' }}
multi-select 필드 유형의 경우
Opsgenie
{{ incident.raw\_services | get: 'opsgenie\_id' }}
select 필드 유형의 경우
{{ incident.raw\_services\[0\] | get: 'opsgenie\_id' }}
multi-select 필드 유형의 경우