Skip to content
New issue

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

Filters are not working properly with numeric values inserted as strings #131

Open
orweinberger opened this issue Oct 23, 2014 · 0 comments
Assignees

Comments

@orweinberger
Copy link
Member

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]]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants