AgufaGit
AgufaGit
i think you can just do ``` LET $id = CREATE warehouse:uuid() CONTENT ... RETURN id ```
`UnmarshalRaw` is the parsing step, which means parsing error will also trigger it, with this code, I need to call rollback twice ```go cloudFiles := uploadFilesToCloud(files) userData, err := db.Query("update...
I'm using SmartUnmarshal, but the code from UnmarshalRaw, all those are parse errors, which I don't want to rollback ```go // UnmarshalRaw loads a raw SurrealQL response returned by Query...
awesome👍
It actually would be very nice if you guys would consider to return database/network errors in the first step only. That would mean 1 more deserialization step `json.Unmarshal`, you could...
there is an option in TransportWsClientOptions to make your own decoder: ```dart TransportWebSocketLink( TransportWsClientOptions( ... graphQLSocketMessageDecoder: (dynamic message) => jsonDecode(message as String) as FutureOr? ), ) ```
I'm getting this exception also, here is my full stacktrace ``` [log] PlatformDispatcher.instance.onError: Bad state: Future already completed, #0 _AsyncCompleter.complete (dart:async/future_impl.dart:43:31) #1 VideoPlayerController.initialize.eventListener (package:video_player/video_player.dart:468:33) video_player.dart:468 #2 _RootZone.runUnaryGuarded (dart:async/zone.dart:1594:10) zone.dart:1594 #3...
> Hi! > > Could you explain (on a higher level) what exactly this does, why it's needed/an improvement and document the change in behaviour with a test? > >...
I'll add tests in next couple of weeks, kinda tied up at the moment. I can't make another pr for `close connection` fix because my app needs both changes in...
the new commit [fix(graphql_transport_ws): completer error Future already completed](https://github.com/gql-dart/gql/pull/466/commits/cde1655c115f967c462b3b6ef119feb0acbbd08e) fixes error ``` Bad state: Future already completed ``` For single-result operations, error message can complete future, but `completer.complete()` will be...