gqlPayload = wasteInstructionsVisalia.map(({name, category, generic_notes, special_notes}) => {
const fullName = `${name} (${category})`
const instruction = `${generic_notes} ${special_notes}`
return {
name: fullName,
location: {
location_id: {id: 10},
instruction
}
}
})