We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The following query should return an equivalent string to what is in the input:
SELECT _rrule.text(_rrule.rrule('RRULE:FREQ=WEEKLY;UNTIL=20221105T020000Z;BYDAY=WE'))
It returns the following: RRULE:FREQ=WEEKLY;UNTIL=2022-11-05 02:00:00;BYDAY=WE
RRULE:FREQ=WEEKLY;UNTIL=2022-11-05 02:00:00;BYDAY=WE
The UNTIL field is returned in the form of a postgres timestamp, instead it should look like the example above. Have a look at the specification here.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following query should return an equivalent string to what is in the input:
It returns the following:
RRULE:FREQ=WEEKLY;UNTIL=2022-11-05 02:00:00;BYDAY=WE
The UNTIL field is returned in the form of a postgres timestamp, instead it should look like the example above. Have a look at the specification here.
The text was updated successfully, but these errors were encountered: