Clinton Blackburn

Results 122 comments of Clinton Blackburn

Yes, I think it should be updated, but I don’t have the capacity to do so at this time. It took me two months to get back to my basic...

@juandl Yes, I _could_ use native Express middleware, and I am. However, I generally expect Nest modules to work with Nest components rather than breaking out into Express or Fastify....

This also impacts usage of `formData` since the `Date` needs to be converted to a `string`.

I can work around the mock issue with an override: ```ts module.exports = { api: { mock: true, override: { useDates: true, mock: { format: { date: () => faker.date.recent(),...

```ts module.exports = { api: { mock: true, override: { useDates: true, formData: { path: './src/api/custom-form-data.ts', name: 'customFormData', }, }, } }; ``` ```ts export const customFormData = (body: Body):...

This remains broken nearly three years later. `HASURA_GRAPHQL_DATABASE_URL` is referenced by the README. https://github.com/hasura/graphql-engine/blob/0173a413bf669a4a669d2308f48cf5419f02cd2d/install-manifests/docker-compose/README.md#L20 The Compose file references `PG_DATABASE_URL`. https://github.com/hasura/graphql-engine/blob/0173a413bf669a4a669d2308f48cf5419f02cd2d/install-manifests/docker-compose/docker-compose.yaml#L17-L18 The docs at https://hasura.io/docs/2.0/deployment/graphql-engine-flags/reference/#database-url mention `PG_DATABASE_URL`, but it seems we...

Just got it working with `HASURA_GRAPHQL_METADATA_DATABASE_URL`. The key was to kill the metadata volume—`docker volume rm hasura_db_data`—which is fine since I'm just starting.

@Helveg that's a good question. There would need to be a mapping between DTO and entity fields. This would allow for exposing DTO fields for search, while querying the DB...

@jezdez can you grant me access to the repository settings, please? I haven't had any control over this since transferring the project to @jazzband.

> Hi @clintonb thank you for your help is this PR still valid? @gioboa yes, but I no longer have capacity to get this into better shape.