Sri
Sri
@PS-MS I can confirm that Post.blog **works** on my end with the amplifyframework version I have mentioned above. I am able to get values inside a blog using "it.blog.id" or...
@alharris-at This is the only line that I could find related to `post` in the model for `blog`. ```kotlin private final @ModelField(targetType="Post") @HasMany(associatedWith = "blog", type = Post.class) List post...
@sktimalsina I have updated the issue to include amplifyconfiguration.json contents. As for the GraphQL schema, we have a complex schema of multiple tables and enums. I would prefer not to...
@sktimalsina In case you need it, we shared our entire schema with Rene Brandon on the Amplify team. I prefer not to share it publicly. I tried implementing both Selective...
> More importantly, when I sign out (clear Datastore, stop Datastore) and sign in again without exiting the app, I am getting an item inside the first ever observeQuery and...
Hi @gpanshu what do you mean by fetching sign in onSuccess? I am using "Amplify.Auth.fetchAuthSession().isSignedIn" to check for an active session which is signed in. Inside that condition, I am...
@gpanshu I am sure that I am checking if the current session has a flag of isSignedIn=true before proceeding to do anything else. Following is the flow of the login...
@gpanshu @div5yesh There's a similar issue which is marked as resolved for iOS: https://github.com/aws-amplify/amplify-ios/issues/1001 Note that my current test environment has no more than 100 entries combined across 10 tables...
@PeterSchoell as you can see in the code snippet I have provided in the issue description, I am already waiting for the `SYNC_QUERIES_READY` event before doing another query and proceeding...
@chrisbonifacio yes, I am still facing this issue and it is quite frustrating because of how randomly it affects the app (about 1-2 times out of every 10 logins). I...