Hi, I'd like to create a flow to find specific issue, this is my step:
1. Find issues by keyword: output is a object such as:

2. compose this output
3. parse this issue, because I want to get one specific issue by some condition
but when I parse this issue, I got a error
[ { "message": "Invalid type. Expected Object but got Null.", "lineNumber": 0, "linePosition": 0, "path": "items[1].assignee", "schemaId": "#/properties/items/items/properties/assignee", "errorType": "type", "childErrors": [] }, { "message": "Invalid type. Expected Object but got Null.", "lineNumber": 0, "linePosition": 0, "path": "items[2].assignee", "schemaId": "#/properties/items/items/properties/assignee", "errorType": "type", "childErrors": [] }, { "message": "Invalid type. Expected String but got Null.", "lineNumber": 0, "linePosition": 0, "path": "items[3].labels[0].description", "schemaId": "#/properties/items/items/properties/labels/items/properties/description", "errorType": "type", "childErrors": [] }, { "message": "Invalid type. Expected Object but got Null.", "lineNumber": 0, "linePosition": 0, "path": "items[3].assignee", "schemaId": "#/properties/items/items/properties/assignee", "errorType": "type", "childErrors": [] }, { "message": "Invalid type. Expected String but got Null.", "lineNumber": 0, "linePosition": 0, "path": "items[4].labels[0].description", "schemaId": "#/properties/items/items/properties/labels/items/properties/description", "errorType": "type", "childErrors": [] }, { "message": "Invalid type. Expected Object but got Null.", "lineNumber": 0, "linePosition": 0, "path": "items[4].assignee", "schemaId": "#/properties/items/items/properties/assignee", "errorType": "type", "childErrors": [] }, { "message": "Invalid type. Expected Object but got Null.", "lineNumber": 0, "linePosition": 0, "path": "items[5].assignee", "schemaId": "#/properties/items/items/properties/assignee", "errorType": "type", "childErrors": [] }, { "message": "Invalid type. Expected String but got Null.", "lineNumber": 0, "linePosition": 0, "path": "items[6].labels[0].description", "schemaId": "#/properties/items/items/properties/labels/items/properties/description", "errorType": "type", "childErrors": [] }, { "message": "Invalid type. Expected Object but got Null.", "lineNumber": 0, "linePosition": 0, "path": "items[6].assignee", "schemaId": "#/properties/items/items/properties/assignee", "errorType": "type", "childErrors": [] }, { "message": "Invalid type. Expected Object but got Null.", "lineNumber": 0, "linePosition": 0, "path": "items[7].assignee", "schemaId": ]
How can I solve this?
By the way, is there any way to find a specific issue? because so much issues be found if by key words. Thanks very much.
