Replies: 1 comment
-
Hey @Gytjarek , sincerest apologies that I did not see this sooner. You actually discovered a bug. The syntax is supposed to be A fix is up in #421 , which will be included in the upcoming v0.13.x release. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm attempting to send a mutation for a Radio field where the
other
option is selected. Gravity Forms sendsgf_other_choice
along with theinput_{$field_id}_value
. However, I noticed that the Radio input supports only a single value field in the mutation. How can I bypass this limitation?mutation { submitGfForm(input: {fieldValues: [{value: "gf_other_choice", "HOW TO PASS OTHER VALUE HERE" id: 7}], id: "1"}) { errors { message id } } }
Beta Was this translation helpful? Give feedback.
All reactions