LCD 12864B V2.0 with ST7920 in SPI mode - no MISO?

Hi all!
Could anyone please help me with this one?

I have wired an LCD to an Arduino Nano according to this tutorial:

It works quite well.
Now I want to add an SD card reader, that also works with SPI, to the setup. As far as I understand, I am supposed to create a chain like this:

Arduino SPI device 1 SPI device 2 Arduino
MOSI (pin 11) ---> MOSI MISO ---> MOSI MISO ---> MISO (pin 12)

However, the display seems to have no MISO. How would I connect these devices? Is it even possible to use this display with other SPI devices?

Thanks!

No, you connect all the SPI devices in parallel i.e. all MOSIs to MOSI pin, SCKs to SCK pin, MISOs to MISO pin (optional)

Each SPI device has a separate pin for CS

Very few things ever use a chain.

David.

Oh!

All right, thanks.
I guess I misunderstood the principle.