Skip to content
Snippets Groups Projects
Commit e16f8284 authored by Nemanja's avatar Nemanja
Browse files

Fix query in `scatter.cy.spec.js`

parent e81a9c15
No related branches found
No related tags found
No related merge requests found
import { restore, visitQuestionAdhoc, popover } from "__support__/cypress";
import { SAMPLE_DATASET } from "__support__/cypress_sample_dataset";
const { ORDERS, ORDERS_ID } = SAMPLE_DATASET;
const { ORDERS, ORDERS_ID, PRODUCTS } = SAMPLE_DATASET;
const testQuery = {
database: 1,
query: {
"source-table": ORDERS_ID,
aggregation: [["count"], ["distinct", ["field-id", ORDERS.PRODUCT_ID]]],
breakout: [["datetime-field", ["field-id", ORDERS.CREATED_AT], "month"]],
aggregation: [
["count"],
[
"distinct",
["field", PRODUCTS.ID, { "source-field": ORDERS.PRODUCT_ID }],
],
],
breakout: [["field", ORDERS.CREATED_AT, { "temporal-unit": "month" }]],
},
type: "query",
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment