We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25e6267 commit 39e97deCopy full SHA for 39e97de
.changeset/small-birds-arrive.md
@@ -0,0 +1,16 @@
1
+---
2
+"@trigger.dev/react-hooks": patch
3
4
+
5
+Added the ability to specify a "createdAt" filter when subscribing to tags in our useRealtime hooks:
6
7
+```tsx
8
+// Only subscribe to runs created in the last 10 hours
9
+useRealtimeRunWithTags("my-tag", { createdAt: "10h" })
10
+```
11
12
+You can also now choose to skip subscribing to specific columns by specifying the `skipColumns` option:
13
14
15
+useRealtimeRun(run.id, { skipColumns: ["usageDurationMs"] });
16
0 commit comments