e.g. instead of: ```tsx const { data: users } = useLiveQuery( (q) => q .from({ usersCollection }) .where(`@usersCollection.id`, `=`, userId), [userId] ) const user = users[0] ``` We could write: ```tsx const { data: user } = useLiveQuery( (q) => q .from({ usersCollection }) .where(`@usersCollection.id`, `=`, userId) .findOne(), [userId] ) ```