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