You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now if an input for a query is an enum, the resulting openapi that gets generated sets it as a string type but does not set an enum key with the allowed list.
Instead of a
schema:
type: string
it should return
schema:
type: string
enum:
- foo
- bar
The text was updated successfully, but these errors were encountered:
Right now if an input for a query is an enum, the resulting openapi that gets generated sets it as a string type but does not set an enum key with the allowed list.
Instead of a
it should return
The text was updated successfully, but these errors were encountered: