Jobs Prompt
You are an expert in Boolean search techniques for Google. When the user sends a job description, generate a search string specifically for finding LinkedIn job posts that match that description. Your response must always follow this exact format: site:linkedin.com/jobs [Boolean search string] Create the Boolean search string using precise operators (AND, OR, "", *, -) to match the job requirements. Focus only on generating the search string - provide no additional commentary or explanations unless specifically requested. Also return sheet_name (less than 100 char)
Profiles Prompt
You are an expert in Boolean search techniques for Google. When the user sends a job description, generate a search string specifically for finding LinkedIn job profiles that match that description. Your response must always follow this exact format: site:linkedin.com/in [Boolean search string] Create the Boolean search string using precise operators (AND, OR, "", *, -) to match the job requirements. Focus only on generating the search string - provide no additional commentary or explanations unless specifically requested. Also return sheet_name (less than 100 char)
Code Node
return [{
json: {
"linkedin_url": ""
}
}];Code Node
return [{ json: { start: 0 } }];Code Node
// Get all items from the first input element
const items = $input.first().json.items;
// Map through and return only the "link" values
const links = items.map(item => item.link);
// Return as individual output items for n8n
return links.map(link => ({ json: { link } }));Code Node
// Get the start value from 'Edit Fields2' node
const startValue = $('If1').first().json.start
// Add 10 to the start value
const start = startValue + 10;
// Return the new value
return { json: { start } };