Can we do nested queries in Strawberry (graphql python pkg)?
Essentially, the same question that was posted here: GraphQL nested query definition
Instead of having
peopleList, peopleSingle, peopleEdit, peopleAdd, peopleDelete
query test {
people {
list {
id
name
}
single(id: 123) {
id
name
}
}
company {
list {
id
name
}
single(id: 456) {
id
name
}
}
}