CoonHouse
CoonHouse
No I didn't! Wonder how I missed that one, sorry. Think I should watch the video again. ;) Thanks for your help!
I have another question. I have some enum values in my resolvers. Do you know how I can pass those into the 'data' object in the test? Thanks and regards,...
I have the following test: ``` it('Create new Arena', async () => { const result = await GraphQLCall({ source: createArenaMutation, variableValues: { data: { ............. location: ArenaLocation.Indoor, ........... }, },...
Ehh, I don't know, I followed the documentation from [Type-GraphQL](https://typegraphql.ml/docs/enums.html)
Yes, I am calling `registerEnumType` and when I debug it's actually hit. Passing in strings didn't work, I'm going to do some more research. Thanks for your time! regards
This way it's working! ``` it('Create new Arena', async () => { const result = await GraphQLCall({ source: createArenaMutation, variableValues: { data: { ............. location: "Indoor" as ArenaLocation, ........... },...
Also an error, but another one. `Task :react-native-reanimated:buildCMakeDebug[armeabi-v7a] FAILED` `ninja: error: manifest 'build.ninja' still dirty after 100 tries` RN 0.72.3 RNR 3.3.0 (New project) buildToolsVersion = "33.0.0" minSdkVersion = 21...
I Fixed it by removing `` from line 28 `.mergeMap(chats =>` I don't know if this has any consequences for the rest of the tutorial. I also discovered that my...