[프로젝트 관리] JIRA - JQL

SHINYEJI·2024년 1월 3일

Tool

목록 보기
2/7

JQL Operators

  • =,!=,>,>=
  • in, not in
  • ~ (contains), !~ (not contains)
  • is empty, is not empty, is null, is not null : 구분없이 빈것으로 인식

Relative Dates

today를 기준으로 내일은 1d, 어제는 -1d,
주는 w로 표현

JQL Functions

  • endOfDay(), startOfDay() (달력 기준(일~토))
  • endOfWeek() (Saturday), startOfWeek() (Sunday)
  • endOfMonth(), startMonth(), endOfYear(), startOfYear()
  • currentUser()

JQL 예제

  1. 금요일
    endOfDay(-1d)

자주 사용하는 JQL은 JIRA의 Filter로 저장하여, 공유하거나 쉽게 사용할 수 있도록 하자.

0개의 댓글