We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16d26fc commit 8cb1cd7Copy full SHA for 8cb1cd7
quill-sql-tests/src/test/scala/io/getquill/examples/TypelevelUsecase.scala
@@ -39,9 +39,9 @@ object TypelevelUsecase {
39
rp <- query[RoleToPermission].join(rp => rp.roleId == r.id)
40
p <- query[Permission].join(p => p.id == rp.roleId)
41
} yield (s, r, p)
42
-
43
- inline def path[F, T](using inline path: Path[F, T]): path.Out = path.get
44
+
+ inline def path[F, T](using path: Path[F, T]): path.Out = path.get
45
inline def q1 = quote { path[User, Role].filter(so => so._2.name == "Drinker") }
46
47
//inline def q1 = quote { path[User, Permission].filter(urp => urp._2.name == "GuiUser" && urp._1.name == "Joe") }
0 commit comments