diff --git a/server/src/data.ts b/server/src/data.ts index 3010acb..742839f 100644 --- a/server/src/data.ts +++ b/server/src/data.ts @@ -302,7 +302,7 @@ export async function getClient( clientGroupID: string, ): Promise { const {rows} = await executor( - `select clientgroupid, lastmutationid from replicache_client where id = $1`, + `select id, clientgroupid, lastmutationid from replicache_client where id = $1`, [clientID], ); if (!rows || rows.length === 0)