How to find the generated JQL of Advanced Portal Report search

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:

  1. Go to Advanced Requests Report

  2. 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.)

inspect.png

 

  1. Go to the Network Tab

In the Developer Tools panel, select the Network tab.

network navigation.png
  1. 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.).

trigger search.png

 

  1. 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.

gql request.png

 

  1. 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.

 

check request.png

 

  1. View the Response

Once confirmed, switch to the Response tab of the same request.

response.png

 

  1. Find the JQL

Scroll to the end of the response body — you’ll find the JQL there.

jql.png

 

 

 Related articles