Hey Tim, great looking package here, I especially like the opt-in smart comments design.
I have a query such as
mutation CreateManyPartsTransfers($partsTransfers: [PartsTransferInput!]!) {
mnCreatePartsTransfer(input: { mnPartsTransfer: $partsTransfers }) {
clientMutationId
partsTransfer {
id
}
}
}
Where I am creating many PartsTransfers rows, and then I would like to get the server-generated ID's back. Currently, it seems to only return 1 id, instead of returning many id's, 1 id for each new row inserted.
Am I missing something or is this just not implemented? And if it's not implemented, how hard do you think it is to implement?
Hey Tim, great looking package here, I especially like the opt-in smart comments design.
I have a query such as
Where I am creating many PartsTransfers rows, and then I would like to get the server-generated ID's back. Currently, it seems to only return 1 id, instead of returning many id's, 1 id for each new row inserted.
Am I missing something or is this just not implemented? And if it's not implemented, how hard do you think it is to implement?