I am having a problem with updating UI in angular ...
# prisma-whats-new
d
I am having a problem with updating UI in angular 5 after fetching a query...
Copy code
this.allUsersSub = this.apollo.watchQuery({
		query: ALL_USERS,
		variables: {
			limit:9
		}
	}).valueChanges.subscribe((results) =>{
		
		this.kioks = results.data["allUsers"] //Data binding is not working
		
		 Object.assign(this.data, results.data); //Data binding is not working
		
	}, err =>{
		console.log(err);
	})
How can I get data binding to work in Angular 5 and Apollo?
k
Could you create a reproduction? Then maybe submit a pr in apollo-angular repo?
d
I have fixed it! Thank you