8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://github.com/cheerfulstoic/ecto_watch/blob/main/guides/introduction/Watching%20without%20a%20schema.md#L1
# setup {EctoWatch, repo: MyApp.Repo, pub_sub: MyApp.PubSub, watchers: [ { %{ table_name: "comments", primary_key: :ID, columns: [:title, :body, :author_id, :post_id], column_map: %{body: :bodyContent}, association_columns: [:author_id, :post_id] }, :updated, extra_columns: [:post_id] } ]}
This throws a warning about a missing :label option. But when I add the :label, it complains that :label is not a valid option 😕
The text was updated successfully, but these errors were encountered:
Could you update the Example to show how the label should be set?
Sorry, something went wrong.
Yeah, absolutely the docs should be updated! Could you try it out first to make sure it's working for you in your case?
{EctoWatch, repo: MyApp.Repo, pub_sub: MyApp.PubSub, watchers: [ { %{ table_name: "comments", primary_key: :ID, columns: [:title, :body, :author_id, :post_id], column_map: %{body: :bodyContent}, association_columns: [:author_id, :post_id] }, :updated, extra_columns: [:post_id], label: :your_label_here } ]}
No branches or pull requests
https://github.com/cheerfulstoic/ecto_watch/blob/main/guides/introduction/Watching%20without%20a%20schema.md#L1
This throws a warning about a missing :label option. But when I add the :label, it complains that :label is not a valid option 😕
The text was updated successfully, but these errors were encountered: