$query = $this->db->table('context')->where('table_id', $node['id'])->where('type_flow', 'conditions');
if ($query != null) {
continue;
} else {
$this->db->table('context')->insert([
'type_flow' => $node['name'],
'title' => $node['data']['title'],
'label' => $item['field'],
'type' => $item['type'],
'value' => $item['value'],
'table_id' => $node['id'],
]);
}