We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57d2b33 commit 6c5b403Copy full SHA for 6c5b403
packages/server/src/schema/events/resolvers.ts
@@ -76,7 +76,8 @@ async function resolveEventsFromDB(
76
join instance on event.instance_id = instance.id
77
where
78
event.id < ?
79
- and (? is null or event.uuid_id = ?)
+ and (? is null or event.uuid_id = ? or event.uuid_parameter = ?
80
+ or event.uuid_parameter2 = ?)
81
and (? is null or event.actor_id = ?)
82
and (? is null or instance.subdomain = ?)
83
group by event.id
@@ -88,6 +89,8 @@ async function resolveEventsFromDB(
88
89
after ?? 2147483647,
90
objectId ?? null,
91
92
+ objectId ?? null,
93
94
actorId ?? null,
95
96
instance ?? null,
0 commit comments