ExpandAsterisk Parameter (Connect-OData Cmdlet)
Indicates whether the asterisk should be expanded in the $select query parameter.
Syntax
Connect-OData -ExpandAsterisk SwitchParameter
Data Type
bool
Default Value
false
Remarks
When ExpandAsterisk is set to true all columns will be listed in the $select query parameter.
For example:
SELECT * FROM Items
All columns will be listed in projection.
SELECT col1,col2, ... , coln FROM Items