Skip to content

Commit

Permalink
Add query property for Salesforce V2 (#28704)
Browse files Browse the repository at this point in the history
* Add query property for Salesforce V2

* Change deprecating description

* Add type description

---------

Co-authored-by: madhura <56606095+madhura-np@users.noreply.github.com>
  • Loading branch information
wenqibu and madhura-np committed May 13, 2024
1 parent 4a4eaa0 commit 0bc238e
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9100,7 +9100,12 @@
"SOQLQuery": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "Database query. Type: string (or Expression with resultType string)."
"description": "Deprecating, please use 'query' property instead. Type: string (or Expression with resultType string)."
},
"query": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "You can only use Salesforce Object Query Language (SOQL) query with limitations. For SOQL limitations, see this article: https://developer.salesforce.com/docs/atlas.en-us.api_asynch.meta/api_asynch/queries.htm#SOQL%20Considerations. If query is not specified, all the data of the Salesforce object specified in ObjectApiName/reportId in dataset will be retrieved. Type: string (or Expression with resultType string)."
},
"includeDeletedObjects": {
"description": "This property control whether query result contains Deleted objects. Default is false. Type: boolean (or Expression with resultType boolean).",
Expand All @@ -9121,7 +9126,12 @@
"SOQLQuery": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "Database query. Type: string (or Expression with resultType string)."
"description": "Deprecating, please use 'query' property instead. Type: string (or Expression with resultType string)."
},
"query": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "You can only use Salesforce Object Query Language (SOQL) query with limitations. For SOQL limitations, see this article: https://developer.salesforce.com/docs/atlas.en-us.api_asynch.meta/api_asynch/queries.htm#SOQL%20Considerations. If query is not specified, all the data of the Salesforce object specified in ObjectApiName/reportId in dataset will be retrieved. Type: string (or Expression with resultType string)."
},
"includeDeletedObjects": {
"description": "This property control whether query result contains Deleted objects. Default is false. Type: boolean (or Expression with resultType boolean).",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8016,7 +8016,11 @@
"properties": {
"SOQLQuery": {
"type": "object",
"description": "Database query. Type: string (or Expression with resultType string)."
"description": "Deprecating, please use 'query' property instead. Type: string (or Expression with resultType string)."
},
"query": {
"type": "object",
"description": "You can only use Salesforce Object Query Language (SOQL) query with limitations. For SOQL limitations, see this article: https://developer.salesforce.com/docs/atlas.en-us.api_asynch.meta/api_asynch/queries.htm#SOQL%20Considerations. If query is not specified, all the data of the Salesforce object specified in ObjectApiName/reportId in dataset will be retrieved. Type: string (or Expression with resultType string)."
},
"includeDeletedObjects": {
"description": "This property control whether query result contains Deleted objects. Default is false. Type: boolean (or Expression with resultType boolean).",
Expand All @@ -8035,7 +8039,11 @@
"properties": {
"SOQLQuery": {
"type": "object",
"description": "Database query. Type: string (or Expression with resultType string)."
"description": "Deprecating, please use 'query' property instead. Type: string (or Expression with resultType string)."
},
"query": {
"type": "object",
"description": "You can only use Salesforce Object Query Language (SOQL) query with limitations. For SOQL limitations, see this article: https://developer.salesforce.com/docs/atlas.en-us.api_asynch.meta/api_asynch/queries.htm#SOQL%20Considerations. If query is not specified, all the data of the Salesforce object specified in ObjectApiName/reportId in dataset will be retrieved. Type: string (or Expression with resultType string)."
},
"includeDeletedObjects": {
"description": "This property control whether query result contains Deleted objects. Default is false. Type: boolean (or Expression with resultType boolean).",
Expand Down

0 comments on commit 0bc238e

Please sign in to comment.