简体   繁体   中英

Query Rally's project owner

I have been trying to query the project's owner with sth like:

queries.push({
   type:"Project",
   key:"project",
   fetch:"Owner",
   query:"(ObjectID = __PROJECT_OID__)"
});

but it's not working, and I found no advice on the Internet on how to do that Can someone show me how?

Thanks

Try adjusting your fetch:

     fetch: "Owner,UserName"

And then adjust your query:

     query: "(Owner.Username = \"user@company.com\")"

Which should give you Projects owned by user@company.com.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM