interface AuthorRepository: Any
Methods
findByUserId
abstract fun findByUserId(userId: String): Author?
Parameters
| Name | Description |
|---|---|
userId: String
|
ReturnValue
| Name | Description |
|---|---|
Author?
|
Provides functions to query Authors that have been persisted in the database.