Since #197 was implemented through #499, we have a big opportunity to make descriptions much smaller.
Effectively all operations now have the same definition for those query parameters when they support it
- name: $orderbyin: querydescription: Order items by property valuesstyle: formexplode: falseschema:
uniqueItems: truetype: arrayitems:
type: string
- name: $selectin: querydescription: Select properties to be returnedstyle: formexplode: falseschema:
uniqueItems: truetype: arrayitems:
type: string
- name: $expandin: querydescription: Expand related entitiesstyle: formexplode: falseschema:
uniqueItems: truetype: arrayitems:
type: string
When the setting it on, we should do the same thing we do for count/top/skip/filter... and have instead
- $ref: '#/components/parameters/expand'
- $ref: '#/components/parameters/select'
- $ref: '#/components/parameters/orderby'
Which would save a ton of repetition throughout the final description.
Since #197 was implemented through #499, we have a big opportunity to make descriptions much smaller.
Effectively all operations now have the same definition for those query parameters when they support it
When the setting it on, we should do the same thing we do for count/top/skip/filter... and have instead
Which would save a ton of repetition throughout the final description.