Skip to content
forked from zhevron/odata

TypeScript OData client.

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT
Notifications You must be signed in to change notification settings

mikaelmattsson/odata

 
 

Repository files navigation

TypeScript OData client

This package wraps the axios http client library with methods to easily handle OData v4 endpoints.

Installation

npm install @zhevron/odata --save

Usage

Getting entities from an endpoint

import { ODataClient } from "@zhevron/odata";

interface IProduct {
    ID: number;
    Name: string;
    Description: string;
}

const client = new ODataClient("http://services.odata.org/Experimental/OData/OData.svc/");
const response = await client.get<IProduct>("Products").execute();

const products = response.entities;

Getting a single entity from an endpoint

import { ODataClient } from "@zhevron/odata";

interface IProduct {
    ID: number;
    Name: string;
    Description: string;
}

const id = 0;

const client = new ODataClient("http://services.odata.org/Experimental/OData/OData.svc/");
const response = await client.get<IProduct>("Products", id).execute();

const product = response.entity;

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

About

TypeScript OData client.

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 100.0%