Hi there, in pulling data for the endowment recon, we noticed some gravy donations that have null backend_processor:
select
contribution.id
, contribution.contact_id
, contribution.receive_date
, contribution_extra.gateway
, contribution_extra.backend_processor
from civicrm.civicrm_contribution AS contribution
left join civicrm.wmf_contribution_extra as contribution_extra on
contribution.id = contribution_extra.entity_id
where
date(contribution.receive_date) between '2025-04-01' and '2025-05-01'
and contribution.contribution_status_id = 1 /* only pull completed transations */
and contribution.financial_type_id <> 14 /* remove refunds */
and contribution.contact_id <> 42572457 /* remove WMF fund-to-fund internal transfers */
and contribution.financial_type_id = 26
and contribution_extra.gateway = 'gravy'
and contribution_extra.backend_processor is null