M
M
I think we can do it simply by using `contains` like the example from [fish 2.0](https://fishshell.com/docs/2.0/commands.html#contains). It's gonna be like this: ```bash if not contains $FNM_MULTISHELL_PATH/bin $PATH set -gx PATH...
@StevenACoffman For me the user wants to return a zero value uuid instead of `null` for some reason then I will suggest using the custom mapping. Returning `null` first is...
Using the pointer of uuid is the other approach but I'm concerned when using it with SQL scan interface or an unexpected nil address panic.
@samsullivan That's what I thought as well, but rather than wrap an error I ended up creating custom error types for the known error and panic error. And use `errors.As`...
I'm passing the value through context to the resolver, and it works just fine. The `graphql.WithPathContext(ctx, graphql.NewPathWithField("fieldName"))` is just a wrapper around the parent context like `context.WithValue` but it still...
The generated code depends on certain locations where the directives can be used. In my case, I have a directive that can be used only in query and mutation operations...
@SalahAdDin I don't think that is the correct way to use the `million.next` function. To override the million config and use the custom plugin you should chain the plugin like...
@SalahAdDin As I said in the workaround you need to manually set `CompilerOptions.rsc` to `true`. So your config should be something like this. ```js export default million.next(withNextIntl(nextConfig), { auto: {...
@SalahAdDin Then I think it's not related to the issue. From the error, it seems like you're using `DirectionProvider` directly in the server component without re-export it from `@radix-ui/react-direction`. As...
@SalahAdDin The workaround is required if you're using `app` directory inside `src` directory as I said at first.