-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Closed
Labels
c/serverRelated to serverRelated to servere/quickfixcan be wrapped up in few hourscan be wrapped up in few hoursk/bugSomething isn't workingSomething isn't workingp/urgentImmediate action requiredImmediate action required
Milestone
Description
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 serverRelated to servere/quickfixcan be wrapped up in few hourscan be wrapped up in few hoursk/bugSomething isn't workingSomething isn't workingp/urgentImmediate action requiredImmediate action required