toriphes / wp-graphql-ninja-forms

Adds Ninja Forms Functionality to WPGraphQL schema
GNU General Public License v3.0
10 stars 2 forks source link

submitForm ListcheckboxField doesn't work #4

Open katarzynapawelczak opened 3 years ago

katarzynapawelczak commented 3 years ago

submitForm(input: {formId: 1, data: [ {id: 1, value: "Julius"}, {id: 2, value: "julius@test.com"}, {id: 3, value: "Hello there"}, {id: 4, value: "[one,three]"} ]})

The 4th field is a list checkbox field. And I can't save data from this field through fetch API (graphql mutation through fetch api call). I have seen that Ninja Forms sends string array for this type of field, so I tried to recreate it.