这是indexloc提供的服务,不要输入任何密码
Skip to content

deep queries fail after alpha23 #688

@Verikon

Description

@Verikon

alpha23 seems to have introduced some issue with queries of reasonable depth.

I've set up a heroku instance here - https://hasura-piel.herokuapp.com/console

the following query no longer works (as of introducing alpha23)

{
  users {
    firstname
    roles {
      role{
        name
        locations {
          location {
            name
            amusements{
              amusement{
                name
                tickets{
                  ticket{
                    ticketnum
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}

If i remove some of the inner items (amusements->tickets) it will work again:

{
  users {
    firstname
    roles {
      role{
        name
        locations {
          location {
            name
          }
        }
      }
    }
  }
}

if i remove some of the outer items (users->roles) it too will work again:

{
  locations {
    name
    amusements {
      amusement {
        name
        tickets {
          ticket {
            ticketnum
          }
        }
      }
    }
  }
}

Metadata

Metadata

Assignees

Labels

c/serverRelated to servere/quickfixcan be wrapped up in few hoursk/bugSomething isn't workingp/urgentImmediate action required

Type

No type

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions