SearchParameters¶
- class tracdap.rt.metadata.SearchParameters¶
Parameters to define a metadata search.
- objectType: ObjectType¶
The type of object to search for
- priorTags: bool¶
Include prior tags in the search.
By default, only the latest tag for each object version is considered in a search. If the as-of parameter is specified, latest tags are considered as of that time.
Setting this flag to true will cause TRAC to consider superseded tags in the search. If the as-of parameter is specified as well then all tags up to that time are considered. Only the latest matching tag will be included in the search result.
This flag can be combined with priorVersions to search across all tags and object versions. If neither flag is specified, only the latest version and latest tag is considered for each object.
- priorVersions: bool¶
Include prior versions of objects in the search.
By default, only the latest version of each object is considered in a search. If the as-of parameter is specified, latest versions are considered as of that time.
Setting this flag to true will cause TRAC to consider superseded object versions in the search. If the as-of parameter is specified as well then all object versions up to that time are considered. Only the latest matching version will be included in the search result.
This flag can be combined with priorTags to search across all tags and object versions. If neither flag is specified, only the latest version and latest tag is considered for each object.
- search: SearchExpression¶
A search expression based on tag attributes.
This field is optional. If no search parameters are given, then all objects are returned.
- searchAsOf: DatetimeValue | None¶
Perform the search as of a specific date/time.
Supplying this field will cause TRAC to ignore all metadata changes from the specified time onwards. The result will be the same as if a search was performed at the specified time with this field left blank.
If a zone offset is supplied as part of the timestamp, TRAC will apply the offset to search across all metadata items in UTC.
If this parameter is not supplied, the search will be executed as of the current time.