All notable changes to this project will be documented in this file. ts-odata-v4 is forked ts-odata project.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
- Support for $search
- Support date input
- Support for OData 'Count' keyword
A typescript library to help generate odata queries
This is a Typescript port of the javascript library [joData]: https://github.com/mccow002/joData
tsoData creates a javascript object that represents an oData query. This allows you to easily modify parts of your oData query without effecting the rest of it.
tsoData's goal is to implement
All methods in tsoData are chainable.
To create a TsoData query object, you instantiate it by passing your base uri into the constructor.
var query = new Tso('http://test.com');
var query = new Tso('http://test.com');
The base uri passed in through the constructor can be accessed by calling
query.baseUri;
To get the query in oData format, call toString off of your query object.
query.toString();
All further documentation is in the library definitions
##Unsupported Features (for now)
These are the list of features TsoData currently does not support. Hopefully, these features are coming soon.
###Filter
- IsOf
###Custom Query Options
TsoData currently does not support any custom query options