I’m creating a new model type in my types.graphql file and then attempting to deploy to graphcool-framework but I’m running into issues. When I deploy with dry run I get a good response, says Cart type created with fields. When i try to deploy without dry run I get an Internal Server Error. This is my model definition:
type Cart @model {
id: ID! @isUnique
createdAt: DateTime!
updatedAt: DateTime!
}
Anyone have any ideas? Is this something I’m doing wrong or an outage? Status page says no issues.