The root of my problem is GraphQL does not allow fields that are not defined by my input type but the data object comes from a single form.
I would love for GraphQL to just ignore the extra field but from what I gathered, that the validation error is built by design.
So now, I need to move the property that GraphQL doesn't know and store it in another variable so I can use it in another mutation.
What I am doing:
const items = formData.items
delete formData.items
I am just wondering if there is any new/better syntax or technique for doing the same thing.
question from:
https://stackoverflow.com/questions/65946293/move-a-property-from-one-object-to-another-in-javascript 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…