Hey,
So I can create a card which works fine via Javascript, the issue I’m facing is populating the radio field.
Here’s my code:
const query = `mutation {
createCard(input: {
pipe_id:302543188,
title: "New card 2",
fields_attributes:b
{field_id: "options", value: "Yes"},
],
}) {
card {
title
}
}
}`
The field in question has a name “Options” with a yes and no option.
Any help would be great.