{{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 필드 유형의 경우