Ed Holloway-George
02/13/2025, 3:47 PMApolloInterceptor
and a HttpInterceptor
to then be able to essentially collate all the information Apollo has for that GraphQL call. An ApolloInterceptor
will supply a UUID for a call, but there's no way to propagate that to an HttpInterceptor
right?mbonnin
02/13/2025, 3:49 PMExecutionContext
is passed down to HttpInterceptor
now IIRC. Let me checkmbonnin
02/13/2025, 3:50 PMmbonnin
02/13/2025, 3:51 PMmbonnin
02/13/2025, 3:52 PMApolloInterceptor
that adds a custom ExecutionContext
containing the uuid and that will be available in the HttpInterceptor
mbonnin
02/13/2025, 3:53 PMHttpInterceptor
could strip it.Ed Holloway-George
02/13/2025, 3:57 PMEd Holloway-George
02/13/2025, 3:58 PMEd Holloway-George
02/13/2025, 3:58 PMExecutionContext
looks like exactly what I needEd Holloway-George
02/13/2025, 6:53 PMExecutionContext
worked perfectly. Thanks for the hint 💪