add query root in mutation fields
rakeshkky opened this issue · 3 comments
rakeshkky commented
Support queries in mutation response.
Example:-
mutation insert_article {
insert_article(
objects: [
{
id: 21,
title: "Article 1",
content: "Sample article content",
author_id: 3
}
]
) {
returning {
id
title
}
query {
author(where: {id: {_eq: 1}){
id
name
}
}
}
}
manasag commented
This issue will now be reviewed and tracked as part of the Hasura V3 roadmap.