You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello! I've recently come across this project and wanted to give it a try to solve an issue I'm working on. So far results have been promising. While testing with a database of mine I observed the following:
According to the notion plugin guide after I import a Notion database into Anyquery, I should see dates with the following format:
YYYY-MM-DDTHH:MM:SSZ for single dates.
YYYY-MM-DDTHH:MM:SSZ/YYYY-MM-DDTHH:MM:SSZ for double dates.
However, after I connect a database that has two Date property fields, I always get null on the dates. Lets say, when I do:
anyquery - q "SELECT `Review Date`, `Timeline Dates` FROM notion_database;"
even though all 4 cells contain non null values. I get the same result whenever I run anyquery -q "SELECT * FROM notion_database;".
It should be noted that both _created_time and _last_edited_time do work ok, since when I run:
anyquery -q "SELECT _created_time, _last_edited_time FROM notion_database;"
No worries, the error was on the plugin side. I forgot a return, which led to date fields returning NULL. The bug is now fixed in the 0.1.3 version of the Notion plugin.
Hello! I've recently come across this project and wanted to give it a try to solve an issue I'm working on. So far results have been promising. While testing with a database of mine I observed the following:
According to the notion plugin guide after I import a Notion database into Anyquery, I should see dates with the following format:
YYYY-MM-DDTHH:MM:SSZ
for single dates.YYYY-MM-DDTHH:MM:SSZ/YYYY-MM-DDTHH:MM:SSZ
for double dates.However, after I connect a database that has two Date property fields, I always get
null
on the dates. Lets say, when I do:anyquery - q "SELECT `Review Date`, `Timeline Dates` FROM notion_database;"
I get this as a result:
even though all 4 cells contain non null values. I get the same result whenever I run
anyquery -q "SELECT * FROM notion_database;"
.It should be noted that both
_created_time
and_last_edited_time
do work ok, since when I run:anyquery -q "SELECT _created_time, _last_edited_time FROM notion_database;"
I get non-null results:
I don't know if this is an issue with my database or if I forgot to configure something.
The text was updated successfully, but these errors were encountered: