is there a way to set a default a value in my types.graphql file for a DateTime Field? I am trying to default the value to be the current date time if nothing is passed in. I need this to be different than the createdAt & updatedAt fields. So far I have tried
roundDateText: DateTime @defaultValue(value: () => new Date())
roundDateText: DateTime @defaultValue(value: new Date())