I'm using the Rally Ruby Lookback Connection Helper to query Rally's Lookback API using Ruby.
Here's my query_obj
:
query_obj = {
"find" => {
"_ProjectHierarchy": [ProjectObjectID here],
"_TypeHierarchy" => "Defect",
"Release" => [ReleaseObjectID here],
"__At": [DateTime here]
},
"fields" => ["Severity", "State", "Name", "Release"],
"start" => 0,
"pagesize" => 1000,
"hydrate": ["Severity", "State", "Release"]
}
I know that everything else works since I've been using this query when not querying with the additional release parameter. If anyone knows the keyword to pair with the release object id, that'd be super helpful. Thanks!