abstract fun getTransactionsById(id: String): LiveData<List<Transaction>>
Returns all Transactions matching the id as a List, wrapped in LiveData.
id
- The id of the Transaction is used in this query.
Return
LiveData containing a List of all Transactions matching the id.