How to call method with callPromise with applyOptions?

Open
#89 1 comment 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Assessment

Difficulty
3/5
Estimated time
1-2 days
Newbie friendliness
35/100
Issue type
Bug
Clarity
Mostly clear
Activity status
Stale
Tech stack
javascript
Domain
api, backend

Research direction

Start at the CallPromiseMixin and ValidatedMethod applyOptions entry points, then compare journal.callPromise() with Meteor.apply using the supplied example. Reproduce the noRetry case and verify whether the option reaches the call; done means the intended no-retry behavior is confirmed or the correct usage is documented.

Written by the indexing model from the issue text.

Description

How can we use method with callPromise applyOption not to retry

applyOptions: {
    noRetry: true, // <-- Tell Meteor not to retry
},

this is method on server

export const journal = new ValidatedMethod({
  name: 'app.journa',
  mixins: [CallPromiseMixin],
  applyOptions: {
    noRetry: true, // <-- Tell Meteor not to retry
  },
  validate: null,
  async run() {
   // code here
  }
})

this is client call

journal.callPromise()
    .then(res => {      
      console.log('res', res)
    }).catch(err => {
      console.log('err', err)
    })
  },

notRetry working with callPromise or Meteor.apply

Dominant language
JavaScript
Stars
193
Forks
29
PR merge metrics
No merged PRs in 30d

Contributor guide

No contributing guide indexed for this repository

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

More from meteor/validated-method

All issues in meteor/validated-method

Similar issues

More JavaScript issues

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.