I am trying to fetch pick list from salesforce using js force but i can't find any way to fetch that

37 views Asked by At

I am trying to fetch pick list from salesforce using js force but i can't find any way to fetch that

try{
  await sfConnection.login(
    config.salesForce.username,
    config.salesForce.password
  );
  const query = await sfConnection.conn.query(
    `SELECT VALID_COMPANY_PROOF__c FROM Account WHERE hed__Primary_Contact__c = '${id}'`
  );
  return query;
}catch(err){
  console.log(err);
}
0

There are 0 answers