Find the Story Name In VersionOne using Project ID or Name python SDK -
Find the Story Name In VersionOne using Project ID or Name python SDK -
i using versionone python sdk, , want know story names within project (scope) have project (scope) id , name , using project id , name how story id , name?
v1 = v1meta()
for scopeobj in v1.scope.select('id','name').where(name='work management'): print scopeobj.id # print scpe id
but how story names , id, within project(scope).
you can utilize approach:
the "filter" operator take arbitrary v1 filter terms.
here's documentation that:
v1 = v1meta() story in v1.story.filter("scope.id='scope:1122'"): print story print story.name
python versionone
Comments
Post a Comment