The Wayback Machine - https://web.archive.org/web/20210813062810/https://github.com/topics/serverless
Skip to content
#

Serverless

Serverless architecture refers to apps that depend on third-party services (backend as a service, or BaaS) or custom code (functions as a service, or FaaS). Their goal is to free the developer and operator from managing the server their code runs on.

Here are 7,988 public repositories matching this topic...

cube.js
chamabreu
chamabreu commented Jun 1, 2021

Describe the bug
If I pass 'Next 7 days' into the dateRange in query, the response is not a range over the next 7 days but only the day IN 7 days.

To Reproduce
Steps to reproduce the behavior:

  1. Build a query like this:
const query: Query = {
    measures: [
      measure
    ],
    timeDimensions: [
      {
        dimension: 'Your.Dimension,
        dateRange: 'Next 7
appwrite
fission
sunhao-java
sunhao-java commented Aug 11, 2021

改进文档

url: https://apisix.apache.org/zh/docs/apisix/admin-api#route

image
在json中,方括号表示数组,而花括号表示对象。这里明显是想表述是数组嵌套数组的方式,但是用两个花括号在json里面是错误的书写方式。所以这里应该是方括号。

描述你想要的解决方案

这里的示例应该修改成如下:

[
    [
        "arg_name",
        "==",
        "json"
    ],
    [
        "arg_ag
Wikipedia
Wikipedia