Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
「Project One」に関連するアセット データを表示するために、Rest データベースから以下のデータを取得しています。単一の URL 内に複数のプロジェクト/特定のプロジェクト/サブ プロジェクトを表示するための正しい構文を知っている人はいますか? つまり、where=Scope.ParentMeAndUp.Name='プロジェクト 1'; 'プロジェクト 2'; 「プロジェクトスリー」
http://versionone/VersionOne/rest-1.v1/Data/PrimaryWorkitem?sel=ID.Name,ID.Number,Scope.Name&where=Scope.ParentMeAndUp.Name= 'プロジェクト 1'
アミク
セミコロンの代わりにコンマを使用してフィルター条件の値を区切ります。
たとえば、あなたの例を使用して:
http://versionone/VersionOne/rest-1.v1/Data/PrimaryWorkitem?sel=ID.Name,ID.Number,Scope.Name&where=Scope.ParentMeAndUp.Name='プロジェクト 1','プロジェクト 2','プロジェクト三'