Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How to filter for "updated > somedate"

Bruno Machioni Leitão
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
November 13, 2025

I'm bringing data from Jira to a database, I have a connector for that. But when I try filtering for the "updated" field, I get some errors like the following:

 The value "2025/11/12 13:18" for field updated is invalid

The value "2025-11-12" for field updated is invalid

 

I tried following the Jira docs for that, but no help
Also tried "updatedDate"
https://support.atlassian.com/jira-service-management-cloud/docs/jql-fields/

For instance, I'm able to filter "project = 'ABCD'"
But not "updated < '2025-11-12'"

 

What is the correct way to filter this field?


HOW TO MAKE IT WORK:
USE A DATE FORMAT LIKE THE FOLLOWING "2025-09-10T12:06:09.172-0300"

1 answer

1 vote
Charlie Misonne
Community Champion
November 13, 2025

Hi Bruno,

Where are you filtering? On which page?

A screenshot would be helpful.

For me the following JQLs work perfectly fine:

  • updated > "2025/11/12 13:18"
  • updated > "2025-11-12"
Bruno Machioni Leitão
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
November 14, 2025

Hi,

 

It's outside of Jira interface. I'm filtering directly in the connector that extracts the data.

Here's a code example that fetches data from Jira:

 JiraCloudData = glueContext.create_dynamic_frame.from_options(connection_type="jiracloud", connection_options={"connectionName": "jira", "API_VERSION": "v3", "ENTITY_NAME": "issue", "FILTER_PREDICATE": project = 'ABCD'}, transformation_ctx="JiraCloudData")

In the filter predicate I'm able to filter for the specific project I'm interested in, but I'm not able to use those updated filters. 

Charlie Misonne
Community Champion
November 14, 2025

Hi Bruno,

Ok interesting. I'm absolutely not familiar with AWS Glue but here is what I found on Jira Cloud connection options - AWS Glue

FILTER_PREDICATE(String) - Default: empty. Used for Read. It should be in the Spark SQL format.

It looks like this expects "Spark SQL" and not JQL. If you can include the "updated" field in this parameter it might expect another notation for the date.

I assume there must be more documentation on this?

 

Bruno Machioni Leitão
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
November 14, 2025

Hi,

 

Yes, I read that documentation and am using Sparl SQL in the filter, but it still doesn't work for filtering the "updated" column. Also doesn't work with the "created" column.

Bruno Machioni Leitão
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
November 14, 2025

Hey @Charlie Misonne

 

I was finally able to break through. The thing is that the date format must be specificaly like this to work with that Glue-Jira connection:
"2025-09-10T12:06:09.172-0300"

 

Thanks for your help!

Charlie Misonne
Community Champion
November 14, 2025

Ok! I'm glad you found out.

I suspected a date formatting issue. In Jira's JQL several formats are supported but for Glue it's different.

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
STANDARD
TAGS
AUG Leaders

Atlassian Community Events