Martin Janeček

Results 56 comments of Martin Janeček

Not sure about Localstack or s3erver, I'll just add [minio](https://github.com/minio/minio) as a relatively small (64mb docker image) s3-compatible server. Worked fine with `django-storages` for local development.

I had issues described in #2442 with OneToOne relation using `select_related` - it returned old, not-updated objects after put/patch requests. It works fine with `prefetch_related` (just one more query to...

Maybe you need to define a converter for the `TranslatedFields` type, similarly to [other fields](https://github.com/graphql-python/graphene-django/blob/main/graphene_django/converter.py#L155)?

I don't know how SerializerMutation is implemented, but using clientMutationId for identifying model to update is not how it was meant to be used. clientMutationId is no-longer in the Relay...

We are using Graphene in several production apps, thousands of registered users level scale. We are using Apollo client on most of the frontend stacks, on few apps we use...

@daniel-skale yes, that's right - there's no harm in using `relay.Node`. Since we don't use the Relay client, we've skipped few features. For example the [Node Root Field](https://docs.graphene-python.org/en/latest/relay/nodes/#node-root-field) is something...

`cp /opt/amon/amon.yml /etc/opt/amon/amon.yml` fixes this issue (note the `/etc`). Of course you should also update the settings in that file.

I've isolated my tests slowdown to Faker too. ``` console.time('require'); const faker = require('@faker-js/faker'); console.timeEnd('require'); ``` The require takes on average 1.6s on 2019 MacBook Pro ``` console.time('require'); const faker...

Could you please consider adding a tusd flag to enable `Access-Control-Allow-Credentials` CORS header? Following [this issue](https://github.com/tus/tus-js-client/issues/92) we enabled `withCredentials` [with the example provided in tus-js-client docs](https://github.com/tus/tus-js-client/blob/master/docs/api.md#onbeforerequest) on our client, so...

@Acconut noted, I'll consider. This seems like a bigger issue though. In meanwhile I got to the same issue with cookies in our react-native app, which goes deep through react-native-tus-client,...