Hello!
I'm writing a small tool around "im" and its functionality. I ran into the following problem:
I have an issue type where there exists a field with the display name of "Type". By default there is the built in field "Type". The field's name is different, lets call it "Other_Type".
I'm trying to get an issue with the following command:
im issues --fields=Type,Other_Type issue_id
The problem is that no matter what I do it only returns the later field (Other_Type). If I use --fields=Other_Type,Type then it only returns "Type". I tried it with the column numbers (eg -10 and 500) but nothing changed.
How can I get both fields in one call to "im"? I rather not call "im" twice due to runtime requirements. Changing the display name is not an option.
Thanks,
Viktor