Stefan Parker

Results 16 issues of Stefan Parker

There is no `setExtends` or `setExtendsf` method on `CodegenInterface`.

A field defined as : ```js horseIDs: UUIDListType({ nullable: true, fieldEdge: { schema: 'Horse', inverseEdge: { name: 'competitionEntries', }, }, }), ``` generates the following code block in `getEditedFields`: ```js...

Instead of doing ```js export interface ISomePattern { someField: string; } ``` If you convert it to a type you can do ```js export type ISomePattern = Ent & {...

v0.2

When a pattern creates an edge action, every schema that uses them gets that action with the same name. Presumably, they would all be the same implementation so it might...

When using a `CustomClauseQuery` with more than one `orderby` field, the pagination query only uses the first one in this filter. For instance, if my `orderby` is: ```js [ {...

As the title says. A sample returned from a graphQL query from the following field definition: ```js horses: StructTypeAsList({ tsType: 'CompetitionEventHorseEntry', fields: { horseId: UUIDType({ nullable: true, foreignKey: { schema:...

If you are fetching a connection and defined your own order by with nullsPlacement, when you paginate, the generated clause doesn't account for null values. For instance, if your custom...

I have a use case where I have a very low-level pattern to be used with multiple other patterns, but the API doesn't support it. There would only be a...

pattern
future

Would be great to define actions in a pattern. A use case I have is the `Profile` pattern's `username` field. Would be great to have a `SetUsernameAction` that can be...

future

In https://ent.dev/docs/custom-graphql/gql-object-type there is a reference to a TS bug, saying > Until [this bug](https://github.com/microsoft/TypeScript/issues/53332) is fixed, custom objects need to be defined in a separate file from where they're...