Filter lookup multiple conditions

Hello,
I am using this function below in order to filter lookup using single ID:

function fncfilterPriestsfromPer() {
    fd.field('BaptismRecordPriestIdFk').ready().then(function () {
        var intType = 14;

        //Filter
        var strFilter = 'PersonCurrentEcceliastic/Id eq ' + intType;

        fd.field('BaptismRecordPriestIdFk').filter = strFilter;
        fd.field('BaptismRecordPriestIdFk').widget.dataSource.read();
    });
}

my need is to filter using multiple inType in same time
//4, 9, 10, 11, 12, 13, 14, 15, 18, 19
var strFilter = 'PersonCurrentEcceliastic/Id eq ' + 4 and 9 and 10 and 11 and 12 etc......;

kindly what is the correct syntax or code in order to filter lookup with multiple criteria.

Thank you

Hello @gkhadra,

In your case the filter query should be the following:

var strFilter = 'PersonCurrentEcceliastic/Id eq 4 or PersonCurrentEcceliastic/Id eq 9 or ... or PersonCurrentEcceliastic/Id eq 19';