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: articles/iot-central/core/howto-query-with-rest-api.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -126,7 +126,7 @@ The following limits apply in the `SELECT` clause:
126
126
- There's no wildcard operator.
127
127
- You can't have more than 15 items in the select list.
128
128
- In a single query, you either select telemetry or properties but not both. A property query can include both reported properties and cloud properties.
129
-
- A propertybased query will return a maximum of 1,000 records. And a telemetry databased query can return up to 10,000 records.
129
+
- A property-based query will return a maximum of 1,000 records. A telemetry data-based query can return up to 10,000 records.
130
130
131
131
### Aliases
132
132
@@ -172,7 +172,7 @@ Use the `TOP` to limit the number of results the query returns. For example, the
172
172
}
173
173
```
174
174
175
-
If you don't use `TOP`, the query returns a maximum of 10,000 results for telemetry databased query and 1,000 for property based query.
175
+
If you don't use `TOP`, the query returns a maximum of 10,000 results for a telemetry data-based query and 1,000 for a property-based query.
176
176
177
177
To sort the results before `TOP` limits the number of results, use [ORDER BY](#order-by-clause).
178
178
@@ -237,7 +237,7 @@ The following limits apply in the `WHERE` clause:
237
237
- You can use a maximum of 10 operators in a single query.
238
238
- In a telemetry query, the `WHERE` clause can only contain telemetry and device metadata filters.
239
239
- In a property query, the `WHERE` clause can only contain reported properties, cloud properties, and device metadata filters.
240
-
- In a telemetry query, you can retrieve up to 10,000 records. And in property query, you can retrieve up to 1,000 records.
240
+
- In a telemetry query, you can retrieve up to 10,000 records. In property query, you can retrieve up to 1,000 records.
241
241
242
242
## Aggregations and GROUP BY clause
243
243
@@ -302,8 +302,8 @@ The current limits for queries are:
302
302
- Queries return a maximum of 10,000 records.
303
303
- The maximum length of a query string is 350 characters.
304
304
- You can't use the wildcard (`*`) in the `SELECT` clause list.
305
-
- Telemetrybased query can retrieve up to 10,000 records.
306
-
- Propertybased query can retrieve up to 1,000 records.
305
+
- Telemetry-based query can retrieve up to 10,000 records.
306
+
- Property-based query can retrieve up to 1,000 records.
0 commit comments