Jérôme Tamarelle

Results 322 comments of Jérôme Tamarelle

The basic search can be done with `field_contains: "string"`. You can search on multiple fields with `OR` ```graphql query { posts( where: { OR: [ {title_contains: "prince"}, {body_contains: "prince"} ]...

Hello, Symfony 3.4 is not maintained anymore. The bundle could move to Symfony 4.4+

The Java implementation is here: [amazon-sqs-java-extended-client-lib](https://github.com/awslabs/amazon-sqs-java-extended-client-lib/tree/1.2.0/src/main/java/com/amazon/sqs/javamessaging) Notes from this implementation: - The message size threshold to be used for storing in Amazon S3 is 256KB by default. - Deleting the...

I like this idea. For naming, we can reverse the POV and call it `setExtraColumns` Regarding UX, a message make clear that more columns can be displayed if the terminal...

> > maybe some utest (coverage) could be added for the new code? > > I don't know how to do it. You can add test files in `extra/intl-extra/Tests/Fixtures` and...

- 👍🏻 for naming `$request->payload`. This is the name in the [RFC 7231](https://www.rfc-editor.org/rfc/rfc7231#section-3.3) and Chrome Dev Tools. - 👍🏻 for keeping the existing `$request->request` untouched for BC. The new field...

Hello @h3xx, thank you for the patch and the details. I worked on this completion script and would like to make some tests. I'm a beginner in bash scripting, but...

> Now, do you think `$body` should be `new InputBag($_POST ?: $this->toArray())` as initially described by this issue or a straight up rename of `$request`? I would love if `$request->body`...

> I'm 100% sure it is not possible to switch to PSR-18 and to keep the same experience (if you consider the concurrency part of the experience of course, but...

Thank you @jderusse for pointing. I should have say "reactive" instead of "async". Actually, thanks to Symfony http client, you made it possible to run parallel long-polling http requests and...