Criteria used in a search for change lists.

interface TfvcChangesetSearchCriteria {
    author?: string;
    followRenames?: boolean;
    fromDate?: string;
    fromId?: number;
    includeLinks?: boolean;
    itemPath?: string;
    mappings?: TfvcMappingFilter[];
    toDate?: string;
    toId?: number;
}

Properties

author?: string

Alias or display name of user who made the changes.

followRenames?: boolean

Whether or not to follow renames for the given item being queried.

fromDate?: string

If provided, only include changesets created after this date (string).

fromId?: number

If provided, only include changesets after this changesetID.

includeLinks?: boolean

Whether to include the _links field on the shallow references.

itemPath?: string

Path of item to search under.

mappings?: TfvcMappingFilter[]
toDate?: string

If provided, only include changesets created before this date (string).

toId?: number

If provided, a version descriptor for the latest change list to include.