You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -82,6 +82,7 @@ keen.addEvents({
82
82
```
83
83
84
84
### Generate Scoped Key
85
+
85
86
```javascript
86
87
var keen =require("keen.io");
87
88
var apiKey ="YOUR_API_KEY";
@@ -101,12 +102,14 @@ var keen = keen.configure({
101
102
102
103
## Queries
103
104
104
-
Analyses are first-class citizens, complete with parameter getters and setters.
105
+
Analyses are first-class citizens, complete with parameter getters and setters.
106
+
107
+
The `<Client>.query` method is available on each configured client instance to run one or many analyses on a given project. Read more about running multiple analyses below.
105
108
106
109
**Format:**
107
110
108
111
```
109
-
var your_analysis = new Keen.<AnalysisType>(eventCollection, attributes);
112
+
var your_analysis = new Keen.<AnalysisType>(eventCollection, attributes);
0 commit comments