engine icon indicating copy to clipboard operation
engine copied to clipboard

Rapidly build your data model with TypeScript and Engine instantly turns it into a GraphQL API.

Results 86 engine issues
Sort by recently updated
recently updated
newest added

This change is [](https://reviewable.io/reviews/contember/engine/315)

This change is [](https://reviewable.io/reviews/contember/engine/147)

ref #29 This change is [](https://reviewable.io/reviews/contember/engine/310)

This change is [](https://reviewable.io/reviews/contember/engine/308)

If I use decorators and don't explicitly declare the `admin` role, `@acl.allowCustomPrimary()` has no effect. This PR allows custom primary for admin always since there is no security risk involved...

This allows to use existing database by marking entities and enums with "disable migrations" flag. This feature is EE only. --- This change is [](https://reviewable.io/reviews/contember/engine/283)

This change is [](https://reviewable.io/reviews/contember/engine/215)

I'm getting this error when trying to start quick-start guide, ![image](https://user-images.githubusercontent.com/72464215/167317399-d39b66b8-cd5a-47be-911f-7f0ab2786717.png)

similar to orderBy on has-many relations. probably using an annotation ``` @def.OrderBy('createdAt', 'asc') ```

Generated GraphQL schema automatically generates named types by appending `Meta` to entities. So when you define `Product` entity and `ProductMeta` entity migrations are OK, but GraphQL server stops working because...