Looks like we were only supporting datetime. This fixes the following error:
Missing onError handler for invocation 'building-schema', error was 'Error: Type with name "Time" does not exists'. Stacktrace was 'Error: Type with name "Time" does not exists
Adding these in to types seems to fix this. Could use String but Date works.
In my strapi schema I had date & time types:
Looks like we were only supporting
datetime
. This fixes the following error:Adding these in to types seems to fix this. Could use
String
butDate
works.