pub fn url__path__params__key<T: Display>(value: T) -> String๐Deprecated:
Use URL__PATH__PARAMETER__KEY (url.path.parameter.<key>) instead.
Expand description
Instantiates the <key> placeholder in the attribute
URL__PATH__PARAMS__KEY (url.path.params.<key>) with a concrete value.
ยงExample
use relay_conventions::interpolate::url__path__params__key;
assert_eq!(url__path__params__key("foobar"), "url.path.params.foobar");