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
This cmdlet returns content objects located in the given folder. For now the cmdlet returns initialized IshObjects initialized by IshSession.DefaultRequestedMetadata which is Basic fields (user friendly fields used in tables) by default.
So what if you want 1 or 2 extra system fields, you have to put an extra Get-IshDocumentObj on the pipeline to retrieve the extra fields. Add parameter -RequestedMetadata so you can merge in extra fields on the initial Get-IshFolderContent
If you need extra fields, and you don't mind extra server side load, then you could add the following line
$ishSession.DefaultRequestedMetadata="All"
The text was updated successfully, but these errors were encountered:
… allowing to skip an additional Get-IshDocumentObj call which slows things down on bigger legacy data sets. Now with tweaked examples, and Pester tests.
…edmetadata (#125)
* #123 Parameter RequestedMetadata is added, cs *.cs is done. Next is a matching Pester test and Release notes. Something to double check is RequestedMetadata that doesn't match object type like PublicationOutput.
* #123 Parameter -RequestedMetadata added similar Search-IshDocumentObj allowing to skip an additional Get-IshDocumentObj call which slows things down on bigger legacy data sets. Now with tweaked examples, and Pester tests.
This cmdlet returns content objects located in the given folder. For now the cmdlet returns initialized
IshObjects
initialized byIshSession.DefaultRequestedMetadata
which isBasic
fields (user friendly fields used in tables) by default.So what if you want 1 or 2 extra system fields, you have to put an extra
Get-IshDocumentObj
on the pipeline to retrieve the extra fields. Add parameter-RequestedMetadata
so you can merge in extra fields on the initialGet-IshFolderContent
If you need extra fields, and you don't mind extra server side load, then you could add the following line
The text was updated successfully, but these errors were encountered: