Phoenix router helpers are perhaps one of the most confusing things in the docs (just my perspective).
Here’s a route:
get “/name”, MyController, :function
I want to pass parameters https://localhost:4000/name?this=that
I’ve tried to use
link( “link”, to: my_path( conn, :function, “name”, this: that ), method: get )
But I get undefined function my_path/4
How do you use a path helper with four arguments?