Fork me on GitHub
#pathom
<
2022-11-09
>
J13:11:26

Hi! It’s ok to have custom field in mutation config?

(pco/defmutation my-mutation [env params]
  {::my-custom-key "value"}
  (...))

wilkerlucio13:11:09

yes, the config map is open, its design to allow for user extra keys for any reason you might wanna put there

👍 1
wilkerlucio13:11:24

a common example is to leverage those keys in a plugin implementation to configure some behavior

J13:11:56

Perfect! Thanks 👍