lib/vendor/Firebase.framework/Versions/A/Headers/FQuery.h in motion-firebase-3.1.3 vs lib/vendor/Firebase.framework/Versions/A/Headers/FQuery.h in motion-firebase-3.1.4

- old
+ new

@@ -306,10 +306,19 @@ * @return An FQuery instance, ordered by child keys. */ - (FQuery *) queryOrderedByKey; /** + * queryOrderedByValue: is used to generate a reference to a view of the data that's been sorted by child value. + * This method is intended to be used in combination with queryStartingAtValue:, queryEndingAtValue:, + * or queryEqualToValue:. + * + * @return An FQuery instance, ordered by child value. + */ +- (FQuery *) queryOrderedByValue; + +/** * queryOrderedByPriority: is used to generate a reference to a view of the data that's been sorted by child * priority. This method is intended to be used in combination with queryStartingAtValue:, queryEndingAtValue:, * or queryEqualToValue:. * * @return An FQuery instance, ordered by child priorities. @@ -377,7 +386,18 @@ * @param value The value that the data returned by this FQuery will have * @param childKey The name of nodes with the right value * @return An FQuery instance, limited to data with the supplied value and the key. */ - (FQuery *) queryEqualToValue:(id)value childKey:(NSString *)childKey; + + +/** @name Properties */ + + +/** +* Get a Firebase reference for the location that this data came from +* +* @return A Firebase instance for the location of this data +*/ +@property (nonatomic, readonly, strong) Firebase* ref; @end