Moderator
3 years, 11 months ago
#27792
::
Hi Ishant,
in case, your database has no (other) default values set for ‘age’ and ‘qualification’, you get null values for ‘age’ and ‘qualification’, by specifying them as optional Connector input parameters. Then, you can call the Connector with
var employee = {
name: ‘ashutosh’,
email: ‘ashutosh@xyz.com’,
company: ‘xyz’
};
and get null values for the not specified (optional) input parameters.
Best regards,
Marie