apiel

Results 10 comments of apiel

@19majkel94 any estimation of implementation? I tried to use your alternative without success ``` import { Field, ID, ObjectType } from 'type-graphql'; @ObjectType() export class ServiceProvider { @Field(() => ID)...

@kamilmysliwiec is there any chance that you share your code to see how you attempted to integrate Type-graphql to Nest? _I am really looking forward to be able to use...

One of the issue of dataloader, is that you have to create a loader per field. So if in your query you have 2 fields that are both related to...

Is there any update on this issue to keep query params from initial request? Cause so far all proposed solutions are work around. What is the reason to remove the...

This PR is inconsistent as the config are used in the instantiation of the Keycloak object, see https://github.com/keycloak/keycloak-nodejs-connect/blob/main/keycloak.js#L61 If you would want to do something like this, you should reinitialize...

I am not very good with bash script but something like this should be a starting point: ```sh #!/bin/sh echo "Load with params: $@"; temp_file=$(mktemp) echo "Tmp file $temp_file" in_port=$(./logue-cli...

What's about to do something like that? (I didn't look at your code yet, but this would be an idea to get the root folder for the current active file)...

I actually wonder if the sync is not better like this: ```js const audioContext = new AudioContext(); const timingOffset = (performance.now()/1000) - audioContext.currentTime; ``` https://cartoonbeats.com/how-to-sync-web-audio-api-and-web-midi/

I have the same issue, did you solve the problem?