Select multiple blocks in panel

Hello!
I try to make a select field where I can select blocks, in order to make them sticky.
This is my code, but I dont get any results with this query. What am I doing wrong?

 stickyselect:
    label: Make sticky
    width: 1/4
    type: select
    query: 
      fetch: page.layout.toLayouts.toBlocks
      text: "{{ block.id }}"
      value: "{{ block.id }}"
      stickyselect:
        label: Make sticky
        width: 1/4
        type: select
        options: query
        query:
          fetch: page.layout.toBlocks
          text: "{{ block.id }}"
          value: "{{ block.id }}"
2 Likes

Thank you Sonja!! Fast as ever