Skip to content

Conversation

@pinheirosam
Copy link

1. Issue Link:
#29

2. Brief explanation of a change:
Removing LocalDateTime from the parser as it converts to a Date format that will not work with SQL or JPA expressions

3. Will it break existing clients and code in production?
No.

@m-laff
Copy link

m-laff commented Feb 8, 2023

I have a similar situation:

  1. a graphql field endDate: DateTime
  2. a filter I would like to add as an input:
input BookFilter {
    endDate: DateTimeExpression
}
input input DateTimeExpression {
    between: [DateTime!]
}
  1. a database field end_date datetime null,
  2. the Java object has a field
    @Column(name = "end_date")
    private LocalDateTime endDate;

The query filter translation current changes the input DateTime to a format which SQL (MySQL) cannot use.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

2 participants