Closed
Description
The exploded query parameter style is not working in current version (0.3.4). It used to work properly in previous version (0.1.11)
example openapi.yaml
openapi: '3.0.3'
info:
description:
version: 2023.8.26
title: example
servers:
- url: https://example
paths:
/example:
get:
operationId: example
parameters:
- name: LocationId
required: false
in: query
style: form
explode: false
schema:
type: array
items:
type: string
It now yields:
https://example/example?LocationId=1&LocationId=2
But it is expected to be:
https://example/example?LocationId=1,2
Originally posted by @luomein in #258 (comment)