With this addon - https://marketplace.atlassian.com/apps/1218767/smart-ql?hosting=server&tab=overview - you can query JIRA with SQL straight from the app or through the special JDBC without to worry about permissions to data.
All custom fields are stored in customfields table in Jira.
Also you can find options and values in customfieldoption and customfieldvalue tables.
Is that what you were asking for?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Something simple to get you started? :
select * from customfield limit 10;
select * from customfieldoption limit 10;
select * from customfieldvalue limit 10;
How are you intending to query?
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.