smooJitter

Results 19 comments of smooJitter

@AOHUA that's my problem. It worked fine until i updated vscode ESLint. The resolution works but the linting doesn't

@tomitrescak Hello, After looking at the TutorialHelper repo, I'm and still having a hard time setting up this package. I notice this is a typescript package, and TutorialHelpers repo is...

@nomi9995, how about the Chang’s to the code? I have precisely the same useCase but I don’t know much about points and scroll to. Essentially I’d like to use components...

One alternative would be to restructure the model friends: [ userids....] mutual: [userIds...] likes: [ userId] likesMe: [userId...] This is easier but I still would need the fields to resolve...

I'm sorry perhaps I should have added more clarity. I believe I am asking about a more common use case. The example above is a bit misleading. My user model...

I can confirm when updating attributes on a subdocument i.e., ``` { _id: 'someId', profile: { ... } } ``` the update wipes out fields that are not passed along...

I am having this problem also, but I’ve yet to define MongoID on any schema. Could it be the internals, particularly as it relates to generating shared schemas? In any...

Here's an example, ``` venueId: { type: Schema.ObjectId, ref: 'Venue' }, ``` are you saying I should use ``` venueId: String, or import { GraphQLMongoID } from 'graphql-compose-mongose'; .... venueId:...

I believe I’ve discovered at least the reproducible concern. I’m only experience this problem when following these directions “Reusing the same mongoose Schema in embedded object fields” With the latest...

I'm sorry for the late response. I actually thought I had this figure out. Actually, I took a different approach and now it's coming back to bit me. After upgrading...