-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Table referencing itself #47
Comments
Yes it is. mutation CreateItemMutation {
createItem(input: {
item: {
title: "parent"
itemsToParentIdUsingId: {
create: [{
title: "child A"
}, {
title: "child B"
}]
}
}
}) {
clientMutationId
}
} |
@Eldow I know a lot of time passed but I'm still have this issue, I'm not able to create more then 1 child, how did you get that working with an array? |
It seems this issue is a duplicate of #33 which is currently not fixed |
It might be worth checking out my fork : https://github.com/Eldow/postgraphile-plugin-nested-mutations |
Hello,
I have a question about a case where a table has a
parent_id
like this:is it possible from this to create the parent item and also the child item (wo where parent_uuid is the uuid of the parent item)?
many thanks
The text was updated successfully, but these errors were encountered: