In the form there is the Label field with the value "test" as shown in the image below:
when I create GraphQL and pass the input label I can't register, here's the image:
Follow my configured form
In the form there is the Label field with the value "test" as shown in the image below:
when I create GraphQL and pass the input label I can't register, here's the image:
Follow my configured form
Hi!
For fields of type "label", it is necessary to use the ID of the label and not the name of it, as you tried.
To find the ID of the label use the following query:
{
pipe(id: xxxx){
labels{
name
id
}
}
}
So, in your case it’d be:
{field_id: “label”, field_value: “ID FOUND”}
and for more than one label:
{field_id: “label”, field_value: ,“ID FOUND1”,“ID FOUND2”]},
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.