(reads)
| 20 | |
| 21 | /** Realm ladder: the same rungs spread across the reads of several districts. */ |
| 22 | export const realmLevelOf = (reads) => |
| 23 | reads <= 0 ? 0 : Math.max(1, levelOf(reads / 8)); |
| 24 | |
| 25 | const USER = `query WorldUser($id: ID!) { user(id: $id) { id username name } }`; |
| 26 | /* Every field `buildWorld` reads, and no more. The timeline is the slow half |
no test coverage detected