Forum

Christian Kleinschroth
      Has successfully completed the online course Introduction
      Has successfully completed the online course Intermediate (200)
      Has successfully completed the online course Advanced (300)
      Has successfully completed the online course Basics (100)
      Has successfully completed the online course Advanced (310)
      Has successfully completed the online course Advanced (320)
      Has successfully completed the Intermediate Certification
      Has successfully completed the Advanced Certification
    3 years ago #27792
    Up
    0
    Down
    ::

    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