Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
802 views
in Technique[技术] by (71.8m points)

graphql - Move a property from one object to another in Javascript

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can destructure from the original object and use spread to get two new variables, items and newFormData from your original formData:

const { items, ...newFormData } = formData

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...