Actually I've project in which I'm using RestKit 0.22.
In my code I've added object mapping:
RKEntityMapping *materialMapping = [RKEntityMapping mappingForEntityForName:NSStringFromClass([Material class])
inManagedObjectStore:[RKObjectManager sharedManager].managedObjectStore];
...
RKResponseDescriptor *responseMaterialsDescriptor = [RKResponseDescriptor responseDescriptorWithMapping:materialMapping
method:RKRequestMethodGET
pathPattern:urlMaterials
keyPath:kRestApiMAterialsKeyPath
statusCodes:RKStatusCodeIndexSetForClass(RKStatusCodeClassSuccessful)];
[[RKObjectManager sharedManager] addResponseDescriptor:responseMaterialsDescriptor];
Generally this code works OK, and after request proper url I get correct response and have stored objects to local database.
Now I want request the same url but after mapping JSON response to Material objects not store results to database. I want to insert all items after some modifications. Do you have any suggestions how can I avoid to store/save objects to DB by RestKit?