stefan-willems-beech

Results 13 comments of stefan-willems-beech

I haven't tried it when calling via the fetch service, I have just followed the setup guide and it is mentioned there to override the fetch with the custom fetch...

I am using the collection to call the request method ```ts export class UsersService extends CollectionService { protected ctor = User; constructor() { super(); } public me(include?: string): Observable {...

Have updated the user model to: ```ts import {BaseModel} from './base-model'; import {Permission} from './permission'; import {Company} from './company'; import {Role} from './role'; import {Revision} from './revision'; import {Field} from...

when console logging the reponse.data I get the same empty User object: ```json { "__META__": { "type": "users", "id": "1", "fields": { "name": { "referenceDef": false }, "email": { "referenceDef":...

are there any workaround around this problem or should I just do custom requests via the httpclient instead of the datx collection?

I have put a console.log inside the fetch function inside the custom fetch service and see it isn't called, is this normal behavior?

Currently I am trying to handle the request via the custom fetch service. Wherein I found the sync is not working as intended: ```ts return from(this.customFetchService.fetch(HttpMethod.Get, 'api/v1/users/me?include=roles.permissions,revisions', null, null)).pipe( map((responseObject:...

I am reverting every version of the package to v2 because v3 isn't workable for me