JsonResultsAdapter constructor
A function that is called once per save operation to extract any deleted keys from any json received over the wire. Must return an array. This method has a default implementation which is to simply returns the "deletedKeys" property from any json returned as a result of executing the save.
A function that is called once per save operation to extract the key mappings from any json received over the wire. Must return an array. This method has a default implementation which simply returns the "keyMappings" property from any json returned as a result of executing the save.
A Function that is called once per query operation to extract the 'payload' from any json received over the wire. This method has a default implementation which simply returns the "results" property from any json returned as a result of executing the query.
A function that is called once per save operation to extract the entities from any json received over the wire. Must return an array. This method has a default implementation which simply returns the "entities" property from any json returned as a result of executing the save.
The name of this adapter. This name is used to uniquely identify and locate this instance when an 'exported' JsonResultsAdapter is later imported.
A visitor method that will be called on each node of the returned payload.
Generated using TypeDoc
A JsonResultsAdapter instance is used to provide custom extraction and parsing logic on the json results returned by any web service. This facility makes it possible for breeze to talk to virtually any web service and return objects that will be first class 'breeze' citizens.