Thomas Segismont
Thomas Segismont
Hi @dazraf . I have used Playground myself, as a desktop app. It worked well with Vert.x Web GraphQL. I liked the fact I wasn't forced into shipping an IDE...
>But then, I took a look and it does look large at ~ 2.3MB. Much larger than graphiql's 872K! The price of nice UI perhaps ;-) Seriously, if GraphiQL and...
>where to add documentation, and how to write it properly You should update the `index.adoc` file in the `vertx-web` module. >is the implementation correct, does it align with Vert.x 4...
Are you interested in contributing this feature?
@InfoSec812 would you mind taking care of this one as well?
@jponge ^^ Thank you @iamwwc , it's great to hear.
@ctron would you like to contribute?
@jponge looks similar to eclipse/vert.x#2163
There are two issues: - the content type of the file sent by Swagger UI: if you choose an image, the content type is, for example, `image/jpeg` but [Vert.x Web...
@ebadta81 the first issue can be solved by updating your schema: ```yml content: "multipart/form-data": schema: $ref: "#/components/schemas/image-upload-query" encoding: file: contentType: 'image/*' ``` With this, any file having a content type...