Oleg Gun
Oleg Gun
this new format is usefull only if it contains some other data for example flag or list of locales
for sure it is better to set scope only once. lets say i want to use my sessionId from redis. this way i can get sessionId in createWinstonAsyncProviders and use...
looks like it would work the same way in nest 7 i will try to check when you are done
@MickL has a good idea about using @Inject
> In provided example svg with icons loads, so probably you need to create issue in jsoneditor itself https://github.com/josdejong/jsoneditor/issues I cant see icons loaded in provided example too, neither in...
I know how to help, not sure about implementation tho in rxjs you can do like so ```js import {concat, EMPTY, Observable} from "rxjs"; import {mergeAll} from "rxjs/operators"; .... public...
but on the second thought `isTokenValidOrUndefined` should not exist at all. because there is some time between execution of `isTokenValidOrUndefined` and actual request. duringthis time token can expire and you...
Just in case, my solution ```js import {ApolloClient} from "apollo-client"; import {createHttpLink} from "apollo-link-http"; import {InMemoryCache} from "apollo-cache-inmemory"; import {onError} from "apollo-link-error"; import {setContext} from "apollo-link-context"; // eslint-disable-next-line import/named import...