Skip to content

Commit

Permalink
add suiteql package info
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmad11 committed Feb 24, 2021
1 parent 353297a commit 45f14e1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# # NetSuite - SuiteTalk REST Web Services

# NetSuite - SuiteTalk REST Web Services

[![NPM](https://nodei.co/npm/netsuite-rest.png)](https://www.npmjs.com/package/netsuite-rest)

Expand Down Expand Up @@ -45,9 +46,12 @@ All requests are [signed](https://system.netsuite.com/app/help/helpcenter.nl?fid
.then(data => console.log(data.links))
.catch((err) => console.log(err));

#### SuiteQl
#### SuiteQL

>NOTE: If you are interested only in the SuiteQL, check [SuiteQL package](https://www.npmjs.com/package/suiteql) or view [source code](https://github.com/ehmad11/suiteql). SuiteQL class extends this class and can return promise or stream for large number of rows.

SuiteQl is a subservice of the query service. Following is an example to execute SuiteQL queries:
SuiteQL is a subservice of the query service. Following is an example to execute SuiteQL queries:

NsApi.request({
path: 'query/v1/suiteql?limit=5',
Expand All @@ -64,7 +68,6 @@ SuiteQl is a subservice of the query service. Following is an example to execute
.then(response => console.log(response))
.catch((err) => console.log(err));

Please see [wiki](https://github.com/ehmad11/netsuite-rest/wiki/) for [More Examples](https://github.com/ehmad11/netsuite-rest/wiki/Examples)...

## Response

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "netsuite-rest",
"version": "1.0.1",
"version": "1.0.2",
"description": "Make requests to Netsuite's SuiteTalk REST Web Services",
"keywords": [
"netsuite",
Expand Down

0 comments on commit 45f14e1

Please sign in to comment.