Skip to content

Commit f0a5024

Browse files
committed
fix samples
1 parent c62f79c commit f0a5024

File tree

1 file changed

+3
-3
lines changed
  • content/docs/developer-resources/rest-apis

1 file changed

+3
-3
lines changed

content/docs/developer-resources/rest-apis/index.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,10 +97,10 @@ For `isWithin` in `Date` and `DateTime` columns, the different set of sub-operat
9797
When calling v3 data api, the where clause has a slight difference with the previous versions. It allows values to be wrapped with quotes (double quotes, single quotes, or backticks) to safely use special characters that might otherwise break older version `where` clauses. This is particularly useful for strings containing commas, parentheses, or other delimiters.
9898

9999
**Example:** Searching for a phrase with special characters:
100-
`("My Field", "like", "Let's come home, and go straight to bed")`
100+
`("My Field", like, "Let's come home, and go straight to bed")`
101101

102102
**Another Example:** Searching for a value that includes a comma:
103-
`("Product Name", "=", "Laptop, 15-inch")`
103+
`("Product Name", eq, "Laptop, 15-inch")`
104104

105105
**Example:** Using single quotes for a value:
106106
`(City, =, 'New York')`
@@ -113,4 +113,4 @@ The v3 `where` clause can also be utilized when using the v2 API by prepending t
113113
`@("Title", not, blank)`
114114

115115
**Another Example:** Combining multiple conditions with special characters in a v2 API call:
116-
`@("Description", "like", "High-performance, water-resistant")`
116+
`@("Description", like, "High-performance, water-resistant")`

0 commit comments

Comments
 (0)