Henry Woody

Results 17 comments of Henry Woody

@jampy Support for absolute paths in nested `` components was discussed in #7335 and added in #7992, seems the approach for absolute paths in descendant `` components should follow the...

You can use the `UpdateDefault` method on the field ([docs](https://entgo.io/docs/schema-fields#default-values)) if you just want this type of functionality generally. Not sure how to do this if you want this functionality...

@wonderfate what do you mean by customization?

Same problem in React 18 (with Webpack) with Node 16.2 using JSPrintManager v5.0.4: ``` Critical dependency: require function is used in a way in which dependencies cannot be statically extracted...

Encountering what I think is also a race in the `Close` function (only on Windows). I don't have a Windows machine so it's hard to test (happening in GitHub Actions),...

Which files is the `GetValue` method generated in?

I don't think there is a built-in function for this (could be wrong though), but you can use [custom ordering](https://entgo.io/docs/paging/#custom-ordering) like this: ``` query := client.MyModel.Query() query.Order(func (s *sql.Selector) {...

Can you explain in more detail (ideally with some code examples)? From what I can tell this sounds like the expected behavior.

This seems like the correct behavior from Ent. Methods called `String` should return `string`, not `*string` many other pieces of code rely on this convention. You could add your own...

If the Gender field is not mandatory you should be fine because it is already a pointer type (`*Gender`). The `String` method only needs to be used when representing the...