ChangeSetQuery Class

Query object for getting ChangeSets. You can use this to modify the query. See ChangeSetHandler.get.

Extends

Methods

Name Description
constructor(): ChangeSetQuery Constructor that sets default page size.  
afterVersion(versionId: string): ChangeSetQuery Query ChangeSets after the specified Version.  
betweenChangeSets(firstChangeSetId: string, secondChangeSetId?: string): ChangeSetQuery Query ChangeSets between two specified ChangeSets.  
betweenVersionAndChangeSet(versionId: string, changeSetId: string): ChangeSetQuery Query ChangeSets between the specified Version and another ChangeSet.  
betweenVersions(sourceVersionId: string, destinationVersionId: string): ChangeSetQuery Query ChangeSets between two specified Versions.  
clone(): ChangeSetQuery Clone current query.  
fromId(id: string): ChangeSetQuery Query ChangeSets that are after the specified ChangeSet.  
getVersionChangeSets(versionId: string): ChangeSetQuery Query ChangeSets included in the specified Version.  
latest(): ChangeSetQuery Change the order of results to be from newest ChangeSets to the oldest ones.  
selectApplicationData(): ChangeSetQuery Query will additionally select data about application that created this ChangeSet.  
selectBridgeProperties(): ChangeSetQuery Select all bridge properties.  
selectDownloadUrl(): ChangeSetQuery Query will additionally select ChangeSet file download URL.  

Inherited methods

Name Inherited from Description
byId(id: string): ChangeSetQuery StringIdQuery Query single instance by its id.
filter(filter: string): ChangeSetQuery StringIdQuery Set filter to the specified filter string.
orderBy(orderBy: string): ChangeSetQuery StringIdQuery Set order for the query.
pageSize(n: number): ChangeSetQuery StringIdQuery Select all entries from the query by pages.
select(select: string): ChangeSetQuery StringIdQuery Set select to specified select string.
skip(n: number): ChangeSetQuery StringIdQuery Skip first entries in the query.
top(n: number): ChangeSetQuery StringIdQuery Select only top entries from the query.

Inherited properties

Name Type Inherited from Description
_query Protected RequestQueryOptions StringIdQuery  

Defined in

Last Updated: 29 November, 2022