We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I believe this query is proving very slow
const customerListResponse = await googleAdsClient.listAccessibleCustomers( refreshToken );
And then, for each customer
const customerDetails = await customerService.query(` SELECT customer.id, customer.descriptive_name, customer.currency_code, customer.time_zone, customer.manager, customer.status FROM customer `);
Is this expected since I chose so many fields? Or is there something wrong? For context, I am using the test api still, not basic or standard yet.
The text was updated successfully, but these errors were encountered:
Yes, it looks like the first query is slow, ended up switching to making calls using plain REST APIs instead and it's much faster.
v18: https://developers.google.com/google-ads/api/rest/reference/rest/v18/customers/listAccessibleCustomers
Sorry, something went wrong.
Yes, it looks like the first query is slow, ended up switching to making calls using plain REST APIs instead and it's much faster. v18: https://developers.google.com/google-ads/api/rest/reference/rest/v18/customers/listAccessibleCustomers
Thanks king will try this out 🙏
No branches or pull requests
I believe this query is proving very slow
And then, for each customer
Is this expected since I chose so many fields? Or is there something wrong? For context, I am using the test api still, not basic or standard yet.
The text was updated successfully, but these errors were encountered: