You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SetFilterBuilder.CreateSetFilter().AddPtcgoCode("PTCGO_CODE") produces {"PtcgoCode", "PTCGO_CODE"} as KVP. Because the first letter is capitalized, the query will fail to find when passed to the client.
Manually adding filter.Add("ptcgoCode", "PTCGO_CODE") will work as temporary workaround.
SetFilter.AddName() and SetFilter.AddSeries() have the same issue.
The text was updated successfully, but these errors were encountered:
SetFilterBuilder.CreateSetFilter().AddPtcgoCode("PTCGO_CODE")
produces{"PtcgoCode", "PTCGO_CODE"}
as KVP. Because the first letter is capitalized, the query will fail to find when passed to the client.Manually adding
filter.Add("ptcgoCode", "PTCGO_CODE")
will work as temporary workaround.SetFilter.AddName()
andSetFilter.AddSeries()
have the same issue.The text was updated successfully, but these errors were encountered: