StrongGrid icon indicating copy to clipboard operation
StrongGrid copied to clipboard

Overhaul searching/segmenting

Open Jericho opened this issue 3 years ago • 1 comments

The goals are:

  • Consolidate the query for searching contacts, searching email activities and segmenting (currently we have "legacy" query logic for searching email activities)
  • Allow using custom fields when searching/segmenting contacts. I wasn't aware this was allowed due to the documentation not being very explicit but @NEMA-IT informed me that it is possible to use custom fields. He is currently contacting SendGrid support to try to get an authoritative confirmation that this is allowed.

Jericho avatar May 18 '22 14:05 Jericho

This will be a good opportunity to simplify the syntax:

Instead of:

var searchCriteria = new SearchCriteriaEqual<ContactsFilterField>(ContactsFilterField.LastName, "Smith");

we will be abel to write this:

var searchCriteria = new SearchCriteriaEqual(ContactsFilterField.LastName, "Smith");

Jericho avatar May 18 '22 14:05 Jericho

:tada: This issue has been resolved in version 0.93.0 :tada:

The release is available on:

Your GitReleaseManager bot :package::rocket:

Jericho avatar Sep 13 '22 18:09 Jericho