ent
ent copied to clipboard
This is maybe a little fringe, but I'm hoping it's also an easy fix. When my core library is packaged and used externally, the generated files' references that go through...
The only thing I'm not 100% sure about is soft deletes, but I believe those get their delete actions converted to update actions, so it won't have any effect here.
Ents with a field edge get that edge created automatically (and removed automatically when unset) through their builder. This is done in the `getEditedFields` method of the builder, as defined...
I have a Pattern `Entry` defined as such: ```ts export const Entry: Pattern = { name: 'Entry', fields: { competitionID: UUIDType({ fieldEdge: { schema: 'Competition', inverseEdge: { name: 'entries', hideFromGraphQL:...
Bumps [next](https://github.com/vercel/next.js) from 13.5.4 to 14.1.1. Commits 5f59ee5 v14.1.1 f48b90b even more 7f789f4 more timeout ab71c4c update timeout 75f60d9 update trigger release workflow 74b3f0f Server Action tests (#62655) a6946b6 Backport...
Patterns create unions in graphQL which is technically valid and correct, but not really useful the way patterns are implemented in Ent. They should be interfaces, and then the ents...
updated https://github.com/lolopinto/ent-starter/commit/381b2e8d9097827213d189f3d8f22aab63f17228 and https://github.com/lolopinto/ent-starter/commit/b037c8246f468d0b4f867100343ffbcaec26ca69 first
If I create a custom graphQL object type for a return on a function, I cannot use it for two functions within the same file (or maybe globally too?). If...