Skip to content

Instantly share code, notes, and snippets.

@BFergerson
Last active April 28, 2023 15:44
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 BFergerson/5b7bb9a347aef44ee2c51a66815694ae to your computer and use it in GitHub Desktop.
Save BFergerson/5b7bb9a347aef44ee2c51a66815694ae to your computer and use it in GitHub Desktop.
fun setup() = listOf(
match(
fighter called "fighter"
has AVG_FIGHT_TIME called "avg_fight_time"
) min "avg_fight_time" called "min_avg_fight_time"
)
fun query() = match(
fighter called "fighter"
has AVG_FIGHT_TIME equalTo named("min_avg_fight_time")
has NAME called "fighter_name"
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment