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
The urlParams $top (located at GetChangesetListParams > GetChangesetListUrlParams > CollectionRequestParams) is being ignored when running, for example,ChangesetOperations.getMinimalList(). If $top is set to 1, rather than returning 1 item, the program returns the entire list of changesets.
The text was updated successfully, but these errors were encountered:
Hello, the $top parameter is put directly into the url when sending requests to iModels API and it specifies the page size in which entities are retrieved. All collection query functions in IModelsClient return iterators, which, when iterated in full, will return all entities regardless of the page size it uses to query all entities. If you want to query just one entity, abort the iteration early with take helper function:
The urlParams
$top
(located atGetChangesetListParams
>GetChangesetListUrlParams
>CollectionRequestParams
) is being ignored when running, for example,ChangesetOperations.getMinimalList()
. If$top
is set to 1, rather than returning 1 item, the program returns the entire list of changesets.The text was updated successfully, but these errors were encountered: