fetch_background_references

Function fetch_background_references 

Source
pub async fn fetch_background_references(
    conn: &mut SqliteConnection,
    background_info_id: i64,
) -> Result<Vec<BackgroundReference>, Error>
Expand description

背景情報に紐づいた参考文献リストを背景情報idから取得します。

SELECT *
FROM view_deserializable_background_reference
WHERE background_info_id = ?;