You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -347,7 +347,7 @@ Property Name | Type | Operation(s) Supported | Description
347
347
action | `Object` | `callAction` | A JavaScript object that represents a Dynamics 365 Web API action.
348
348
actionName | `string` | `callAction` | Web API Action name.
349
349
addAnnotations | `boolean` | `retrieveCsdlMetadata` | If set to `true` the document will include many different kinds of annotations that can be useful. Most annotations are not included by default because they increase the total size of the document.
350
-
apply | `string` | `retrieveMultiple`, `retrieveAll` | Sets the $apply system query option to aggregate and group your data dynamically. [More Info](https://docs.microsoft.com/en-us/powerapps/developer/common-data-service/webapi/query-data-web-api#aggregate-and-grouping-results)
350
+
apply | `string` | `retrieveMultiple`, `retrieveAll` | Sets the $apply system query option to aggregate and group your data dynamically. [More Info](https://learn.microsoft.com/en-us/power-apps/developer/data-platform/webapi/query/aggregate-data)
351
351
async | `boolean` | All | **XHR requests only!** Indicates whether the requests should be made synchronously or asynchronously. Default value is `true` (asynchronously).
352
352
bypassCustomPluginExecution | `boolean` | `create`, `update`, `upsert`, `delete` | If set to true, the request bypasses custom business logic, all synchronous plug-ins and real-time workflows are disabled. Check for special exceptions in Microsft Docs. [More Info](https://docs.microsoft.com/en-us/powerapps/developer/data-platform/bypass-custom-business-logic)
353
353
collection | `string` | All | Entity Collection name.
/**Logical name of the table. Specifies scope of the query. */
802
+
name: string;
803
+
/**List of columns that needs to be projected when table documents are returned in response. If empty, only the table primary name is returned. */
804
+
selectColumns?: string[];
805
+
/**List of columns to scope the query on. If empty, only the table primary name is searched on.*/
806
+
searchColumns?: string[];
807
+
/**Filters applied on the entity.*/
808
+
filter?: string;
809
+
};
810
+
exporttypeSearchOptions={
811
+
/**Values can be simple or lucene. */
812
+
querytype?: "simple"|"lucene";
813
+
/**Enables intelligent query workflow to return probable set of results if no good matches are found for the search request terms.*/
814
+
besteffortsearchenabled?: boolean;
815
+
/**Enable ranking of results in the response optimized for display in search results pages where results are grouped by table.*/
816
+
searchmode?: SearchMode;
817
+
/**When specified as all the search terms must be matched in order to consider the document as a match. Setting its value to any defaults to matching any word in the search term.*/
818
+
grouprankingenabled?: boolean;
819
+
};
800
820
exportinterfaceSearchQueryBase{
801
821
/**The search parameter value contains the term to be searched for and has a 100-character limit. For suggestions, min 3 characters in addition. */
802
822
search: string;
803
823
/**The default table list searches across all Dataverse search–configured tables and columns. The default list is configured by your administrator when Dataverse search is enabled. */
804
-
entities?: string[];
824
+
entities?: string[]|SearchEntity[];
805
825
/**Filters are applied while searching data and are specified in standard OData syntax. */
806
826
filter?: string;
807
827
}
808
-
exportinterfaceSearchextendsSearchQueryBase{
828
+
exportinterfaceQueryextendsSearchQueryBase{
829
+
/**V2. Whether to return the total record count.*/
830
+
count?: boolean;
809
831
/**Facets support the ability to drill down into data results after they've been retrieved. */
810
832
facets?: string[];
811
-
/**Specify true to return the total record count; otherwise false. The default is false. */
833
+
/**
834
+
* Specify true to return the total record count; otherwise false. The default is false.
835
+
* @deprecated Use "count".
836
+
*/
812
837
returnTotalRecordCount?: boolean;
813
838
/**Specifies the number of search results to skip. */
814
839
skip?: number;
815
840
/**Specifies the number of search results to retrieve. The default is 50, and the maximum value is 100. */
816
841
top?: number;
817
842
/**A list of comma-separated clauses where each clause consists of a column name followed by 'asc' (ascending, which is the default) or 'desc' (descending). This list specifies how to order the results in order of precedence. */
818
843
orderBy?: string[];
819
-
/**Specifies whether any or all the search terms must be matched to count the document as a match. The default is 'any'. */
844
+
/**V2. Options are settings configured to search a search term. */
845
+
options?: SearchOptions[];
846
+
/**
847
+
* Specifies whether any or all the search terms must be matched to count the document as a match. The default is 'any'.
848
+
* @deprecated Use "options.searchmode".
849
+
*/
820
850
searchMode?: SearchMode;
821
-
/**The search type specifies the syntax of a search query. Using 'simple' selects simple query syntax and 'full' selects Lucene query syntax. The default is 'simple'. */
851
+
/**
852
+
* For V2, use "options.querytype". The search type specifies the syntax of a search query. Using 'simple' selects simple query syntax and 'full' selects Lucene query syntax. The default is 'simple'.
853
+
* @deprecated Use "options.querytype".
854
+
*/
822
855
searchType?: SearchType;
823
856
}
857
+
/**@deprecated Use Query instead */
858
+
exportinterfaceSearchextendsQuery{
859
+
}
824
860
exportinterfaceSuggestextendsSearchQueryBase{
825
861
/**Use fuzzy search to aid with misspellings. The default is false. */
0 commit comments