# Injury Overview The number of games that Lester Quinones has missed for each injury. The injury description is taken directly from the daily injury report on the day of the game. %% DATAVIEW_PUBLISHER: start ```dataview TABLE WITHOUT ID min(rows.quinones_injury_notes) as Injury, length(rows.quinones_injury_notes) as "Games Missed" FROM "Daily" Where quinones_injury_notes AND quinones_injury_status_res = "Out" GROUP BY quinones_injury_notes ``` %% | Injury | Games Missed | | ------------------ | ------------ | | G League - Two-Way | 5 | %% DATAVIEW_PUBLISHER: end %% # Game log A log of each game that Lester Quinones was on the injury report for, including games where he was listed on the injury report but did ultimately play. %% DATAVIEW_PUBLISHER: start ```dataview table game_opponent as Opponent, quinones_injury_status_pre as Pregame, quinones_injury_status_res as Final, quinones_injury_notes as Injury from "Daily" where quinones_injury_status_pre SORT file.name DESC ``` %% | File | Opponent | Pregame | Final | Injury | | ------------------------------------------- | --------- | ------- | ----- | ------------------ | | [[Daily/2024/11/2024-11-24.md\|2024-11-24]] | Clippers | Out | Out | G League - Two-Way | | [[Daily/2024/11/2024-11-20.md\|2024-11-20]] | Grizzlies | Out | Out | G League - Two-Way | | [[Daily/2024/11/2024-11-18.md\|2024-11-18]] | Heat | Out | Out | G League - Two-Way | | [[Daily/2024/11/2024-11-15.md\|2024-11-15]] | Magic | Out | Out | G League - Two-Way | | [[Daily/2024/11/2024-11-12.md\|2024-11-12]] | Knicks | Out | Out | G League - Two-Way | %% DATAVIEW_PUBLISHER: end %%