Skip to content

Instantly share code, notes, and snippets.

@FCO
Created October 27, 2019 11:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FCO/9942a10ffb9399b49f1bc37bf9ccddf6 to your computer and use it in GitHub Desktop.
Save FCO/9942a10ffb9399b49f1bc37bf9ccddf6 to your computer and use it in GitHub Desktop.
redable
use Post; my $*RED-DEBUG = True; say Post.^all.pick
SQL : SELECT
post.id , post.author_id as "author-id", post.title , post.body , post.deleted , post.created , post.tags
FROM
post
ORDER BY
random()
LIMIT 1
Post.new(id => 1, title => "test1", body => "body-test1", deleted => 0, created => DateTime.new(2019,10,22,12,0,19.196347), tags => Set.new(""))
BIND: []
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment