Slide 11
Slide 11 text
使ってみると
使ってみると
正しい使い⽅を知っていれば期待通りに動作する
example> (find-artists (ds) {})
[#:artist{:id 1, :type 1, :name "Aqours"}
#:artist{:id 2, :type 1, :name "CYaRon!"}
#:artist{:id 3, :type 1, :name "AZALEA"}
#:artist{:id 4, :type 1, :name "Guilty Kiss"}
#:artist{:id 5, :type 1, :name "Saint Snow"}
#:artist{:id 6, :type 1, :name "Saint Aqours Snow"}]
example> (find-artists (ds) {:name "Aq"})
[#:artist{:id 1, :type 1, :name "Aqours"}
#:artist{:id 6, :type 1, :name "Saint Aqours Snow"}]
example> (find-artists (ds) {:ids [2]})
[#:artist{:id 2, :type 1, :name "CYaRon!"}]