We are using Version One. House policy is not to make yourself an owner of a story when you create a defect or story. Sometimes I want to quickly locate a story I recently added, but I can find no way other looking through the entire list of 'Described' stories for that product. Is there a way to filter by the story (or defect) creator?
Since you are asking here on Stack Overflow, I assume you mean as an API query.
The first thing you would need to know is the attributes for the VersionOne Story
asset. If you explore the attributes for Story
with the meta.v1 endpoint, you will find:
CreateDate : Date
CreatedBy : Relation to Member
With that, you can use the query.v1 endpoint to query for Story
with a specific CreatedBy
, sorted descending on CreateDate
, with a page size of 100.
from: Story
select:
- Number
- Name
where:
CreatedBy.Name: Ian Buchanan
sort:
-CreateDate
page:
start: 0
size: 100