How to find the generated JQL of Advanced Portal Report search
Follow these steps to locate the JQL (Jira Query Language) in your app’s response:
Go to Advanced Requests Report
Open Developer Tools
Right-click anywhere on the page and select Inspect or press F12 to open Developer Tools directly.
(This will open a panel in your browser.)
Go to the Network Tab
In the Developer Tools panel, select the Network tab.
Apply Search Criteria
Use the app’s search functionality to apply your desired filters or search terms
(e.g., search by summary, add filters, etc.).
Locate the GraphQL Request
In the Network tab, look for the GraphQL requests.
It’s usually the second request related to the search functionality, and it often takes longer to complete.
Click on that request to view its details.
Confirm the Correct Request
Expand the following path in the request details:data > variables > input > payload > call > functionKey
Ensure the value of functionKey is: /portal/search
This confirms you’re inspecting the correct request.
View the Response
Once confirmed, switch to the Response tab of the same request.
Find the JQL
Scroll to the end of the response body — you’ll find the JQL there.