Created
March 9, 2023 17:21
-
-
Save vitroz/476830eb9e4ce3de8a5a8f9c5ed44f46 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fake_accounts = FakeConnectedAccount.all | |
params = {:limit=>250, :since_id=> 0, :created_at_max=>DateTime.now} | |
problematic_merchants = [] | |
problematic_merchants_weird = [] | |
fake_accounts.each do |f| | |
session = ShopifyAPI::Session.new(domain: f.provider_account_uid, token: f.auth_token, api_version:SmileConfig.shopify_app.api_version) | |
ShopifyAPI::Base.activate_session(session) | |
full_customer_rs = ShopifyAPI::Customer.find(:all, params: params) || [] | |
full_customer_rs.size | |
count_endpoint_val = ShopifyAPI::Customer.count | |
p "checking account: #{f.account_id} - #{f.provider_account_uid}" | |
p "number of customers on RS: #{full_customer_rs.size}" | |
p "number of customers total: #{count_endpoint_val}" | |
if full_customer_rs.size == 0 && count_endpoint_val > 0 | |
problematic_merchants_weird.append(f.account_id) | |
p "OPS: the merchant: #{f.account_id}, endpoint call returns: #{count_endpoint_val}, but result set outputs: #{full_customer_rs.size}" | |
end | |
if count_endpoint_val < 250 | |
if full_customer_rs.size != count_endpoint_val | |
problematic_merchants.append(f.account_id) | |
p "the merchant: #{f.account_id}, endpoint call returns: #{count_endpoint_val}, but result set outputs: #{full_customer_rs.size}" | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment