Hello
I’m currently developing on Flutter/Dart, and I want to integrate the Dart/DGraph package.
https://pub.dev/packages/dgraph
When integrating, I encounter a problem below, do you have any idea of where the problem may come from.
Under Dart, unfortunately, this is the only package that exists apparently!
Is there another solution?
Thank you in advance for your help.
Error Message:
gRPC Error (13, grpc: error unmarshalling request: proto: wrong wireType = 2 for field StartTs)
My code:
// Run a query
String query = """
query all (\ $ a: string) {
all (func: eq (name, \ $ a)) {
name
}
}
""";
api.Response response = await txn.QueryWithVars (clientContext, query, {"\ $ a": "Star Wars: Episode IV - A New Hope"});