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
Where `events` represent `rrweb` events and `<WireQuery Host>` is the host of WireQuery, such
90
-
as `https://demo.wirequery.io`.
38
+
To end recording, call `recorder.stopRecording()`:
39
+
```js
40
+
// end recording
41
+
recorder.stopRecording()
42
+
.then(() => {
43
+
// ...
44
+
})
91
45
92
-
An example of how `rrweb` can be used, can be found in the `sdk/js/examples/shop` in
93
-
the [WireQuery](https://github.com/wirequery/wirequery) repository.
94
-
95
-
## Examples
96
-
97
-
The following examples demonstrate how WireQuery can be used within a Frontend application:
98
-
99
-
-[Shop](https://github.com/wirequery/wirequery/tree/main/sdk/js/examples/shop) - simulates a webshop.
100
-
-[Products Service](https://github.com/wirequery/wirequery/tree/main/sdk/jvm/examples/spring-boot/products) - simulates a product catalogue.
101
-
-[Basket](https://github.com/wirequery/wirequery/tree/main/sdk/jvm/examples/spring-boot/basket) - simulates an order basket. Connects to the products service.
46
+
```
47
+
The API Key is the API Key belonging to the specified template.
0 commit comments