The query below results in the query complexity budget being exhausted, especially if users are not being limited:
me {
id,
name,
teams {
id,
name,
users(limit: 100) {
id
}
}
}
complexity {
before,
after,
query,
reset_in_x_seconds
}
However the query cost for the query below is only about 1000.
teams {
id,
name,
users {
id
}
}
complexity {
before,
after,
query,
reset_in_x_seconds
}
Am I misunderstanding about the usage of the first query or is this a bug?