@@ -54,7 +54,7 @@ The adaptor can be assigned using the `adaptor` property of the
54
54
``` ts
55
55
import { DataManager , Query , ReturnOption , UrlAdaptor } from ' @syncfusion/ej2-data' ;
56
56
57
- const SERVICE_URI: string = ' https://ej2services .syncfusion.com/react/development /api/UrlDataSource' ;
57
+ const SERVICE_URI: string = ' https://services .syncfusion.com/react/production /api/UrlDataSource' ;
58
58
59
59
new DataManager ({
60
60
adaptor: new UrlAdaptor ,
@@ -144,7 +144,7 @@ To enable OData query option for Web API, please refer to the [documentation](ht
144
144
``` ts
145
145
import { DataManager , Query , ReturnOption , WebApiAdaptor } from ' @syncfusion/ej2-data' ;
146
146
147
- const SERVICE_URI: string = ' https://ej2services .syncfusion.com/react/development /api/Orders ' ;
147
+ const SERVICE_URI: string = ' https://services .syncfusion.com/react/production /api/orders ' ;
148
148
149
149
new DataManager ({
150
150
adaptor: new WebApiAdaptor ,
@@ -311,14 +311,14 @@ export default resolvers;
311
311
312
312
The query parameters will be send in a string format which contains the below details.
313
313
314
- | Parameters | Description |
315
- | -----| -----|
314
+ | Parameters | Description |
315
+ | ---------------- | ----------------------------------------------------------------------------- |
316
316
| ` RequiresCounts ` | If it is ` true ` then the total count of records will be included in response. |
317
- | ` Skip ` | Holds the number of records to skip. |
318
- | ` Take ` | Holds the number of records to take. |
319
- | ` Sorted ` | Contains details about current sorted column and its direction. |
320
- | ` Where ` | Contains details about current filter column name and its constraints. |
321
- | ` Group ` | Contains details about current Grouped column names. |
317
+ | ` Skip ` | Holds the number of records to skip. |
318
+ | ` Take ` | Holds the number of records to take. |
319
+ | ` Sorted ` | Contains details about current sorted column and its direction. |
320
+ | ` Where ` | Contains details about current filter column name and its constraints. |
321
+ | ` Group ` | Contains details about current Grouped column names. |
322
322
323
323
### Performing CRUD action with GraphQLAdaptor
324
324
0 commit comments