Hi! I'm using postgresql. And I need to make sql query for database customfield to autocompleate child fields, based on parent field
So i've got something like this:
SELECT cfv.issue, cfv.textvalue as parent, cfv.id=10016 as child1
FROM customfieldvalue cfv
WHERE CFV.customfield=10500;
But column "child1" must be in stringvalue. Instead of this it comes with boolean, and i get "false" result.
What i'm dooing wrong?
Using SQL for a start - you should not do that. Use the API in JIRA.
If you insist on using SQL, then you'll need to read customfield to work out what type of field you are dealing with and then read "options" if it's the appropriate field type (select list type fields)
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.