({ u, p }: { u: Ref<User>; p: Ref<Post> })
| 402 | }) |
| 403 | |
| 404 | const joinedSelect = ({ u, p }: { u: Ref<User>; p: Ref<Post> }) => ({ |
| 405 | userName: u.name, |
| 406 | postTitle: p.title, |
| 407 | }) |
| 408 | |
| 409 | // Test single collection |
| 410 | const singleCollection = createLiveQueryCollection({ |
nothing calls this directly
no outgoing calls
no test coverage detected