Someone can tell me the difference if any between type and issuetype field on JQL?
I have same question with key and issuekey fields..., are they different in any way?
It's not well-documented, but there are a handful of "aliases" in Jira. Key is an alias for issuekey, and type is an alias for issuetype. You've spotted the two main ones!
The aliases can be clobbered - you can create custom fields with the same name which then become the first place Jira looks when you type in the alias, but I'd try to avoid doing that in every case, as it just confuses your humans.
"Your humans"
❤
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I use "issue type" when I want to avoid confusion. Just like I say "Jira project" instead of "your company project".
To see all the aliases that exist go to /rest/api/2/field as an admin, and look at the clauseNames for each field.
I found the following aliases
[u'issuetype', u'type']
[u'remainingEstimate', u'timeestimate']
[u'updated', u'updatedDate']
[u'originalEstimate', u'timeoriginalestimate']
[u'id', u'issue', u'issuekey', u'key']
[u'created', u'createdDate']
[u'due', u'duedate']
[u'resolutiondate', u'resolved']
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
There is not difference.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.