Description
Using an Open API file that has a parameter with explode: false
results in a warning of
Feature "Unexploded query params" is not supported, skipping [context: foundIn=Operations.launcher_list.Input.Query (#/paths/2.2.0/launcher/GET/query)/launcher_config__ids]
false
values appear to be listed as unsupported in the documentation.
/launcher/:
get:
operationId: launcher_list
parameters:
- in: query
name: launcher_config__ids
schema:
type: array
items:
type: integer
description: Comma-separated launcher config IDs.
explode: false
style: form
responses:
"200":
description: A success response with a greeting.
content:
application/json:
schema:
$ref: "#/components/schemas/Greeting"
I am open to creating a PR, but this is my first time using Open API and would need guidance.