0

嗨,我正在使用管道运行 - 按工厂查询来获取最新的管道运行结束(日期时间)。我的请求正文如下所示。

{
 "lastUpdatedAfter":"2020-07-05",
 "lastUpdatedBefore":"2020-11-16",
 "Orderby":[{"RunEnd"}],
 "filters":[{"operand":"PipelineName","operator":"Equals","values":["abc"]}]
}

当我添加 orderby 时,pipelinName 的过滤器不起作用(否则过滤器正在工作)并且 RunEnd 按默认降序排序,但我需要它按升序排列,并且在 Microsoft artical 中没有任何可用的语法。

所以我需要

  1. 通过 acending 的 order 语法以及 piplelineName 的工作过滤器。
4

1 回答 1

0
I found the answer. 
{
  "lastUpdatedAfter":"@{adddays(formatDateTime(utcnow(),'yyyy-MM-dd'),-60)}",
  "lastUpdatedBefore":"@{formatDateTime(utcnow(),'yyyy-MM-dd')}",
  "filters":[
             {"operand":"PipelineName","operator":"Equals","values": 
              ["insighthealth_npi_at_move_to_bronze"]
             },
            ],
  "orderBy":[{"orderBy":"RunEnd","order":"DESC"}]
 }
于 2020-08-14T09:00:05.010 回答