fix issue with query cache
This commit is contained in:
		
							parent
							
								
									ab99d5f076
								
							
						
					
					
						commit
						db45cb5ad0
					
				| @ -1,6 +1,6 @@ | ||||
| { | ||||
|   "name": "@poweredsoft/ngx-data-apollo", | ||||
|   "version": "0.0.3", | ||||
|   "version": "0.0.5", | ||||
|   "peerDependencies": { | ||||
|     "@poweredsoft/data": "^0.0.26", | ||||
|     "@angular/common": "^8.2.4", | ||||
|  | ||||
| @ -55,7 +55,8 @@ export class GraphQLDataSourceOptionsBuilder<TModel, TKey> { | ||||
|                         query: this.createGraphQLQuery(query), | ||||
|                         variables: { | ||||
|                             criteria: advanceQuery | ||||
|                         } | ||||
|                         }, | ||||
|                         fetchPolicy: 'no-cache' | ||||
|                     }); | ||||
|                      | ||||
|                     return o$.pipe( | ||||
|  | ||||
| @ -17,7 +17,7 @@ export class GenericRestDataSourceService | ||||
|     } | ||||
| 
 | ||||
|     private _handleErrorPipe(err: HttpErrorResponse) : Observable<IDataSourceError> { | ||||
|         console.log(typeof(err.error), err); | ||||
|         //console.log(typeof(err.error), err);
 | ||||
| 
 | ||||
|         if (err.status == 500) { | ||||
|             return throwError(<IDataSourceErrorMessage>{ | ||||
|  | ||||
| @ -55,16 +55,16 @@ export class AppComponent implements OnInit { | ||||
| 
 | ||||
|   ngOnInit(): void { | ||||
|     this.dataSource.notifyMessage$.subscribe((notification) => { | ||||
|       console.log(notification); | ||||
|       //console.log(notification);
 | ||||
|     }); | ||||
| 
 | ||||
|     this.dataSource.validationError$.subscribe((notification) => { | ||||
|       console.log(notification); | ||||
|       //console.log(notification);
 | ||||
|     }); | ||||
|   } | ||||
| 
 | ||||
|   onCreate(): void { | ||||
|     console.log('excuting command!'); | ||||
|     //console.log('excuting command!');
 | ||||
|     this.dataSource.executeCommandByName('create', { | ||||
|       firstName: "", | ||||
|       lastName: "Baba" | ||||
| @ -76,7 +76,7 @@ export class AppComponent implements OnInit { | ||||
|   } | ||||
| 
 | ||||
|   onDelete(): void { | ||||
|     console.log('excuting command!'); | ||||
|     //console.log('excuting command!');
 | ||||
|     this.dataSource.executeCommandByName('delete', { | ||||
|       id: 1 | ||||
|     }).subscribe(() => { | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user