top | item 45158265

(no title)

kaelwd | 5 months ago

My favourite way of doing this is with edgeql

    select Movie {
      title,
      actors: {
        name,
        alsoActedIn := (
          .movies { title }
          filter .id != Movie.id
        ),
      },
    } filter .title = <str>$title;

discuss

order

No comments yet.