Charlie Jonas
Charlie Jonas
in theory this should work. Pretty sure I've done something similar several times. Does the parent relationship get generated? If not, can you check FLS? If you're an Admin profile...
oh interesting... I had no idea there was a `__pc` API ending. I think it just needs to be added to this line of code: https://github.com/ChuckJonas/ts-force/blob/master/ts-force-gen/src/util.ts#L5 Would be a good...
At the very least, there could be some good performance gains by tracking the different instances during 'mapping' and cloning `{...user}` instead of running a redundant mapping process. Would be...
did some testing an surprisingly I didn't really see any performance benefits to doing this... Not sure it's worth it
So you have multiple packages that your are deploying as unmanaged code? How do you deal with name conflict (same filename in both packages)? I think it would be possible,...
This may provide a solution: https://github.com/forcedotcom/cli/issues/379
I don't think I can block in vscode. I'm basically just implementing `providers` and vscode handles all user interactions. Unfortunately, this means I don't even have great control over when...
> Is it possible to record the fact if response to last call to code completion has been received ? > If response has not been received then just do...
> Do you know in which order VSCode sends completion and cancellation token ? I added some logging and spammed a bunch of requests. From what I can tell vscode...
@neowit ya, so basically vscode automatically handles the triggering of "CompletionRequersts". You can specify a trigger character, (like `.`) but vscode still might send request in other contexts (not sure...