(invoiceId: number)
| 50 | }) |
| 51 | |
| 52 | const invoiceQueryOptions = (invoiceId: number) => |
| 53 | queryOptions({ |
| 54 | queryKey: ['invoices', invoiceId], |
| 55 | queryFn: () => fetchInvoiceById(invoiceId), |
| 56 | }) |
| 57 | |
| 58 | const usersQueryOptions = ({ |
| 59 | filterBy, |
no test coverage detected