We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19d6fec commit 90a3632Copy full SHA for 90a3632
Assets/AppServices/README.md
@@ -40,7 +40,7 @@ Lookup | Get an item’s data using id property.
40
void Update<T>(T item, Action<IRestResponse<T>> callback = null) where T : new();
41
void Delete<T>(string id, Action<IRestResponse<T>> callback = null) where T : new();
42
void Query<T>(CustomQuery query, Action<IRestResponse<List<T>>> callback = null) where T : new();
43
- void Query<T>(CustomQuery query, Action<IRestResponse<T>> callback = null) where T : INestedResults, new();
+ void Query<T>(CustomQuery query, Action<IRestResponse<T>> callback = null) where T : INestedResults, new();
44
void Lookup<T>(string id, Action<IRestResponse<T>> callback = null) where T : new();
45
46
## Sample usage
0 commit comments