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
Enums are allowed as a query parameter - it would be great if it could read this and identify the possible routes based on this.
Moreover, generally identifying the data type of the route param would be great.
For example; for uuids: /users/{record} => record: string
For autonumber ids: /users/{record} => record: integer
Where model is an enum, record is string: /{model}/{record} => model: enum [users, projects, tasks, quotes]
Probably displayed as a table, such as:
Query Params:
Field | Type | Data
===================================
model | enum | users, projects, tasks, quotes
-----------------------------------
record | string |
-----------------------------------
The text was updated successfully, but these errors were encountered:
Enums are allowed as a query parameter - it would be great if it could read this and identify the possible routes based on this.
Moreover, generally identifying the data type of the route param would be great.
For example; for uuids:
/users/{record}
=>record: string
For autonumber ids:
/users/{record}
=>record: integer
Where model is an enum, record is string:
/{model}/{record}
=>model: enum [users, projects, tasks, quotes]
Probably displayed as a table, such as:
The text was updated successfully, but these errors were encountered: