Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix LocalDateTime bug #30

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants