Sylvanus Kateile
Sylvanus Kateile
see https://github.com/flutter/gallery/tree/master/.github/workflows
Any progress on this?
I am using subscription with artemis and graphql-flutter this way Repo example ```dart class JobsRepository { final GraphQLClient client; JobsRepository({@required this.client}) : assert(client != null); Stream subscribeToJobs() { final _options...
@henriquesaias post your typeorm config and entity location I will help you solving it
There is problem in locating entities. Typeorm cant read them. Why don't you use something like `"entities": ["src/entities/*.*"],` in configuration and make sure typeorm.json/js is on root
Can someone please merge this
any solution on this?
@avioli the problem is `getInitialLink` returns the same link even after app's life ends. So the same link previously handled keep appear over and over again without even being invoked....
Try leading here may be you may get some tips [here](https://simonmarquis.github.io/Android-App-Linking/)
```go type Employee struct { ID string `json:"id" gorm:"primaryKey;type:INTEGER;autoIncrement;"` CreatedAt time.Time `json:"createdAt"` UpdatedAt time.Time `json:"updatedAt"` DeletedAt time.Time `json:"deletedAt"` Name string `json:"name" gorm:"index;size:50"` } ``` @riverchu any workaround for my case...