Diptesh Choudhuri
Diptesh Choudhuri
I have a model that I don't want to expose to my graphql schema at all. The below does not work. Is there an existing solution? ```prisma /// @HideField({input: true,...
Here is a project graph: As you can see all dependencies declared in `apps/esteem/Cargo.toml` are added as implicit dependencies. By definition, _only_ in-workspace projects qualify as implicitDependencies.So in the above...
I find myself making this mutation often: ```gql mutation { createMember(input: {name: "new name", email: "[email protected]", password: "123"}) { member { id } errors { field message } } }...
### What version of Remix are you using? 1.7.3 ### Steps to Reproduce I have a graphql server. Making a single request to it in `loader` or `action` works fine....
Is there a way to have the fuzzy file finder remember priorities? I open some files more than other and I would like them to be at the top of...
Hello. Thank you developers and awesome project! It would be really great if helix support developing in devcontainers (either in core or via plugins). A lot of developers prefer not...
Using version `1.5.0` I am using yarn workspaces. `react-email dev` fails with this error (the last step hangs indefinitely): Reproduction: 1. Clone https://github.com/IgnisDa/codefarem/tree/IgnisDa/issue23 (the `IgnisDa/issue23` branch) 2. `cd apps/mails &&...
Thanks for the wonderful project! ### Feature description Right now the frontend makes always makes backend requests to the same domain. This should be made configurable via an `API_URL` env...
`figment` can automatically get names of expected environment variables. With the following config: ```rs #[derive(Deserialize, Debug, Clone, Serialize)] pub struct OpenlibraryConfig { pub url: String } #[derive(Deserialize, Debug, Clone, Serialize)]...
Thanks for the project, it is really awesome! Right now, the configuration file is hardcoded to be read from the current directory. Sometimes it becomes necessary to run `binserve` from...