ODataAngularResources
ODataAngularResources copied to clipboard
Fluent OData queries from Angular's Resources
Hi , i am getting this error.How can i fix these error. **Error in resource configuration for action `odata`. Expected response to contain an array but got an object** Here...
Hi, I was updating my code and i dont see a way to count, take, skip when expand data is a collection . ` if (expand.expandType === "direct"){ qry =...
I have an endpoint that returns Post objects which have collections of PostComment objects, both of which have property LastModifiedDateTime of type DateTime. I am trying to query this endpoint...
Any plan to implement Batch requests?
How to query related collections? For example: in OData service I have endpoint: /odata/Users({key})/Orders Is there a way to retrieve user orders by user ID using $odataresource?
I am trying to get typeahead to work, it is working with $http.get but not with the odata library. Seems like it is a problem with returning the promise, not...
Hi, I am trying to implement the ability to cancel an odata request via a promise using $http timeout option. I figured out how to get the timeout promise onto...
How to create filter with Enum type?
Here is some solution to search inside field. I.e. we have: `"text": "some TEST here"` We want to get search by text `TEST`. `new $odata.Func('startswith','Text', 'TEST')` will return empty, because...
Is there a way to format the or operation like so: `(b eq 'a' or b eq 'c' or b eq 'd') and ...` instead of `(((b eq 'a') or...