Any custom field

You can customize scheme as you want.

Example:

Sometime you need create custom path. You can add function for you request.

{
   ...
   setUserid(value) {
      this.meta.path = `/users/${value}/labels/favorite`;
   },
   meta: {
     method: 'delete',
     path: '',
   },
   ...
}

Last updated