I am not sure if this is the correct spot to ask this question, but I am trying to write code to query features created during today's date. I have figured out querying works in general;
from datetime import date
today = date.today()
query1 = Assignments.query(where="Status = 3")
query1
<FeatureSet> 29 features
But I am unsure how to do this with date types. Any suggestions?
Thanks!