Postman request does not hit the correct AddValueFilter() method

7 views
Skip to first unread message

howard taylor

unread,
Jul 8, 2025, 4:12:37 AMJul 8
to FHIR DOTNET

I am sending a request via Postman 11.52.4:

pm.variables.set("Count", "10")

pm.variables.set("Target_Date", "2022-01-01")

 

pm.request.url.query.add(

     {key: "date", value: `gt${ pm.variables.get("Target_Date") }`}

)

 

pm.request.url.query.add(

    {key: "_count", value: pm.variables.get("Count")}

)

 

The method I need to land in is:

public override xxxxRelationalQuery<xxxxProcedure> AddValueFilter(string parameterName, DateTimeValue value)
{

    var currentDate = DateTime.Parse(value.Period.OriginalValue).Date;

 

    switch (value.Operator)

    {

                        case ComparisonOperator.GT:

                              return PredicateQuery(procedure => procedure.EventDate > currentDate);

    ............... etc

    } 

}

 

But I do not get there.  Instead I go here:

public override xxxxRelationalQuery<xxxxProcedure> AddValueFilter(string parameterName, RawValue value)
{

}


I don't understand why I do not hit the correct method overload.

Mirjam Baltus

unread,
Jul 9, 2025, 2:40:26 AMJul 9
to FHIR DOTNET
Hello Howard,

This is not a method from the Firely .NET SDK, but is related to Firely Server instead which is out of scope for this group.
Please reach out to the support desk or your Firely implementation consultant to help you out with Firely Server questions.

Kind regards,

Mirjam Baltus

Op dinsdag 8 juli 2025 om 10:12:37 UTC+2 schreef howard taylor:
Reply all
Reply to author
Forward
0 new messages