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
When pushing this document
{ timestamp: null, actions: 1, campaign_id: "123456" }
Querying it with a filter works only in the numeric fashion, for example, this will NOT work:
{ timeframe: "last_30_days", metrics: ["actions"], dimensions: ["campaign_id"], filter: [['campaign_id','eq','123456']] }
But this will work:
{ timeframe: "last_30_days", metrics: ["actions"], dimensions: ["campaign_id"], filter: [['campaign_id','eq',123456]] }
The text was updated successfully, but these errors were encountered:
itayw
No branches or pull requests
When pushing this document
Querying it with a filter works only in the numeric fashion, for example, this will NOT work:
But this will work:
The text was updated successfully, but these errors were encountered: